Search found 28 matches

by DwayneDev
Tue Feb 11, 2020 1:43 am
Forum: Games and Creations
Topic: 3D Rendering Engine in Love 2D
Replies: 3
Views: 6612

Re: 3D Rendering Engine in Love 2D

Yeah I turned on the back face culling feature. Doing the matrix math with a gl calls in a shader wouldn't make this faster would it?
by DwayneDev
Mon Feb 10, 2020 7:24 pm
Forum: Games and Creations
Topic: 3D Rendering Engine in Love 2D
Replies: 3
Views: 6612

3D Rendering Engine in Love 2D

I took a course for 3D geometry and applied the math's to Love 2D to draw 3D shapes. -didn't use CPML or any Shaders -wrote a parser to load .obj files and map UV Texture coordinates to mesh objects. -The program passed drops below 60 fps passed 30,000 tris - does anyone has any optimization tips fo...
by DwayneDev
Wed Jan 15, 2020 2:10 am
Forum: Games and Creations
Topic: Shmup Game: Gunnier Zed demo with 7 stages
Replies: 7
Views: 14350

Re: Shmup Game: Gunnier Zed demo with 7 stages

Here's video of the 3D in motion:
by DwayneDev
Wed Jan 15, 2020 2:05 am
Forum: Games and Creations
Topic: Shmup Game: Gunnier Zed demo with 7 stages
Replies: 7
Views: 14350

Re: Shmup Game: Gunnier Zed demo with 7 stages

I'M BACK! to post an update on Gunner Zed, broke up with fake pre-render 3D. In-engine 3D is my new best friend :^) Love 3D gang where u at. anyway, I wrote a basic 3D engine from scratch in love 2D, NO opengl calls or shaders. it has quirks but it does what I need it to do for the most part. The en...
by DwayneDev
Wed Oct 30, 2019 3:56 pm
Forum: Games and Creations
Topic: Max Downforce - arcade racer
Replies: 15
Views: 20036

Re: Max Downforce - arcade racer

dude the game looks so fast... every time I come back to this post I get sucked in by the gameplay video. Its trans-like.
by DwayneDev
Tue Oct 22, 2019 5:08 pm
Forum: Games and Creations
Topic: Metanet Hunter G4 (OUT NOW!!)
Replies: 5
Views: 15201

Re: Metanet Hunter G4

I really like the limited color pallet. I find it inspiring!
by DwayneDev
Thu Sep 12, 2019 4:28 pm
Forum: Support and Development
Topic: Does Love 2D support video with an alpha channel for video overlay?
Replies: 6
Views: 5371

Re: Does Love 2D support video with an alpha channel for video overlay?

Thanks for the suggestions, I'll experiment with those concepts.
by DwayneDev
Thu Sep 12, 2019 4:15 pm
Forum: Support and Development
Topic: Does Love 2D support video with an alpha channel for video overlay?
Replies: 6
Views: 5371

Re: Does Love 2D support video with an alpha channel for video overlay?

OKAY. So I was using blender to export video with an alpha channel. after some testing it turns out .ogv doesn't have an alpha despite blender suggesting otherwise. Iused the following settings to export the ogv and the alpha did not work. mistake.JPG OOF2.JPG .MPG4 does support aplha channel but do...
by DwayneDev
Thu Sep 12, 2019 3:00 am
Forum: Support and Development
Topic: Does Love 2D support video with an alpha channel for video overlay?
Replies: 6
Views: 5371

Does Love 2D support video with an alpha channel for video overlay?

I made a video with alpha transparency to overlay it on another video. I wanted to do this to make layers animated backgrounds through video. --I've tried it and the transparency of video 2 isn't there love.graphics.draw(video,425,0) love.graphics.draw(video2,425,0) I know this might be weird and in...