Search found 105 matches

by PGUp
Sat Jan 05, 2019 8:13 am
Forum: Games and Creations
Topic: simple .obj file renderer
Replies: 6
Views: 8150

Re: simple .obj file renderer

https://love2d.org/imgmirrur/Hwtn5yB.png Sup. I really like how simplistic the code is, with no GLSL trickery. It encouraged me to try adding some basic texture loading and rendering (done with Meshes - the way faces are projected facilitated the job). Well done. https://love2d.org/imgmirrur/K4UTzL...
by PGUp
Sat Dec 29, 2018 1:31 am
Forum: Support and Development
Topic: Anyone Else Having Problems With Android?
Replies: 1
Views: 2455

Re: Anyone Else Having Problems With Android?

just use this tutorial, you wont be able to export to playstore with this (you'd need to wait for the 0.11.2 version to come out), but atleast you'd get an apk you can test.

https://love2d.org/wiki/Game_Distribution/APKTool
by PGUp
Mon Dec 17, 2018 9:19 am
Forum: Games and Creations
Topic: simple .obj file renderer
Replies: 6
Views: 8150

Re: simple .obj file renderer

ShoesForClues wrote: Wed Dec 12, 2018 1:46 pm Dang, beated me to it! I just created my own basic 3D renderer along with my own .obj importer.

https://love2d.org/imgmirrur/6VbH5tF.png

Though, mine is pretty laggy.
really nice, pretty reasonable mine is faster because it doesnt have any texture
by PGUp
Sun Dec 09, 2018 9:27 am
Forum: Games and Creations
Topic: simple .obj file renderer
Replies: 6
Views: 8150

simple .obj file renderer

the code is a mess, but it works anyway, this is just a proof of concept:
WASD to move
mouse to look around
F to show line

3d.love
(30.07 KiB) Downloaded 440 times
screenshot.png
screenshot.png (17.75 KiB) Viewed 8149 times
by PGUp
Sun Dec 09, 2018 12:31 am
Forum: Support and Development
Topic: Build LÖVE game on Android device
Replies: 1
Views: 2070

Re: Build LÖVE game on Android device

you can't build apk on android, move that .love file to your pc and follow this instruction https://love2d.org/wiki/Game_Distribution/APKTool
by PGUp
Sat Dec 01, 2018 5:51 am
Forum: General
Topic: LÖVE 11.2 released - including Android APK!
Replies: 46
Views: 332705

Re: LÖVE 11.2 released!

LÖVE 11.2 for Android also includes fixes to support the Play Store after recent Android changes
https://love2d.org/wiki/Game_Distribution/APKTool
can I use this to export to playstore yet?
by PGUp
Mon Nov 12, 2018 12:00 pm
Forum: Support and Development
Topic: build error
Replies: 0
Views: 2573

build error

i followed everything in the https://bitbucket.org/MartinFelis/love-android-sdl2/wiki/Building_L%C3%96VE_for_Android_-_Windows tutorial, got stuck at the very last step "Run ndk-build",it shows this error: Microsoft Windows [Version 6.3.9600] (c) 2013 Microsoft Corporation. All rights rese...
by PGUp
Sun Jul 01, 2018 5:52 am
Forum: General
Topic: Code Doodles!
Replies: 196
Views: 263888

Re: Code Doodles!

frac.png generating fractal, one pixel at a time function getDist(x1, y1, x2, y2) return math.sqrt(math.pow(x2 - x1, 2) + math.pow(y2 - y1, 2)) end function getPos(x, y, rot, dist) return x - math.sin(rot) * dist, y + math.cos(rot) * dist end function getAngle(x1, y1, x2, y2) return math.atan2(x1 -...
by PGUp
Sun Jun 17, 2018 11:53 am
Forum: Support and Development
Topic: what was there when I pressed the button?
Replies: 4
Views: 3814

Re: what was there when I pressed the button?

Learn how to iterate through table in Lua first