Search found 40 matches

by girng
Mon Jul 20, 2020 1:03 pm
Forum: Games and Creations
Topic: H0ard3() Rel0aded - a hectic top-down shooter
Replies: 5
Views: 8422

Re: H0ard3() Rel0aded - a hectic top-down shooter

I really like the art style and game feel. The shooting and collisions feel impactful, great job
by girng
Sun Sep 16, 2018 9:57 am
Forum: Support and Development
Topic: how to change cam perspective (fov && angle)?
Replies: 7
Views: 6952

Re: how to change cam perspective (fov && angle)?

Defold is a 3D engine, Love2D is a 2D engine. If you want to do 3D-ish stuff like Smash Bash you're probably better off using an engine designed to support 3D. It is possible to do 3D in Love, but it's significantly more work than in something like Defold. I'm pretty sure you can achieve the same e...
by girng
Fri Sep 14, 2018 11:40 am
Forum: Libraries and Tools
Topic: [library/wip] Löve Bone: 2D Skeletal Animations
Replies: 20
Views: 41215

Re: [library/wip] Löve Bone: 2D Skeletal Animations

Okay, so a little update. The files in /release can be unzipped https://i.gyazo.com/45ed850d72bc0b362b6be652e772105d.png It creates: https://i.gyazo.com/342eaefd3cb8842a9b61352da409075f.png However, when I run these, it asked to install net 3.5. So I did, and I ran it again, but nothing happens. I'm...
by girng
Fri Sep 14, 2018 2:00 am
Forum: Libraries and Tools
Topic: [library/wip] Löve Bone: 2D Skeletal Animations
Replies: 20
Views: 41215

Re: [library/wip] Löve Bone: 2D Skeletal Animations

Can you tell me what steps you took to get Demina working? I don't think I had any particular problems installing/running it. What seems to be the problem? I downloaded the ZIP from https://demina.codeplex.com/ I extracted it somewhere. The executable will end up being <path_to_installation>/Demina...
by girng
Fri Sep 14, 2018 1:39 am
Forum: General
Topic: How to turn the pages if it does not have turning button?
Replies: 3
Views: 4075

Re: How to turn the pages if it does not have turning button?

The hell is a turning button lol
by girng
Fri Sep 14, 2018 1:30 am
Forum: Support and Development
Topic: can't get spriter to work (it does, but nothing shows up)
Replies: 7
Views: 7185

Re: can't get spriter to work (it does, but nothing shows up)

Damn. Looks like there is one huge problem after doing all this to get it to work. There is no animation transitioning. I have no clue on how to incorporate that :cry: I checked out Spine's love runtime, works quite well (has animation transitioning too!). Except that puppy is $69.99 w/o even full I...
by girng
Thu Sep 13, 2018 3:24 pm
Forum: Support and Development
Topic: can't get spriter to work (it does, but nothing shows up)
Replies: 7
Views: 7185

Re: can't get spriter to work (it does, but nothing shows up)

BOOOOOOOOOM just figured out hoow to change the animation speed time = time + (dt * self.animation_speed) under function Spriter:incrementTime( dt ) man, this is addon is FREAKING EPIC! i might actually buy spriter lolz. now can change it dynamically based upon a player's speed, etc. hell yeah :D :D
by girng
Thu Sep 13, 2018 2:56 pm
Forum: Support and Development
Topic: can't get spriter to work (it does, but nothing shows up)
Replies: 7
Views: 7185

Re: can't get spriter to work (it does, but nothing shows up)

@pgimeno i found a solution i think function Spriter:spriterToScreen( x, y ) local centerx = Spriter.canvas:getWidth() / 2 local centery = Spriter.canvas:getHeight() - 200 change -200 to / 2 then, --Using a shared canvas to avoid creating too many --Not sure if the best idea, and certainly clunky to...
by girng
Thu Sep 13, 2018 2:08 pm
Forum: Support and Development
Topic: can't get spriter to work (it does, but nothing shows up)
Replies: 7
Views: 7185

Re: can't get spriter to work (it does, but nothing shows up)

so i replaced: love.graphics.setBlendMode('premultiplied') with: love.graphics.setBlendMode("multiply", 'premultiplied') I think you want "alpha", "premultiplied". Nice! Thank you! The black part is now gone. Yay! Now, just the character's x and y position is at a weir...
by girng
Thu Sep 13, 2018 12:35 pm
Forum: Support and Development
Topic: can't get spriter to work (it does, but nothing shows up)
Replies: 7
Views: 7185

Re: can't get spriter to work (it does, but nothing shows up)

ok actually it does show up! however, it's inside a huge black canvas. it's HUGE and the character's offset is not correct: https://i.gyazo.com/0cdf5e817bedcd98c7bfaa4d65a7e54f.gif is there a way to just have it be drawn like if you were drawing an image? (rid of the black canvas, and remove weird o...