Search found 6 matches

by Duck Duckinson
Mon Nov 05, 2018 3:07 am
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1488340

Re: What's everyone working on? (tigsource inspired)

Still working in my game art.
Nonetheless, i'd prefer to have someone else to do that for me.
by Duck Duckinson
Thu Jul 26, 2018 4:25 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1791
Views: 1488340

Re: What's everyone working on? (tigsource inspired)

Working on my github site. On Löve2D, I was building the basic game mechanics for my future games. I'm building using the Entity-Component-System but I'm new on gamedev and it's taking some time for me to get used to it. Also, I was studying Krita since I'll need some Game Art. I already am a pretty...
by Duck Duckinson
Thu Jul 26, 2018 3:13 am
Forum: General
Topic: Any way to proper toggleFullscreen function
Replies: 3
Views: 3990

Re: Any way to proper toggleFullscreen function

https://love2d.org/wiki/Config_Files

Create a file in the same directory as your main.lua named "conf.lua"
Inside you put:

function love.conf(t)
t.window.fullscreen = true
end
by Duck Duckinson
Thu Jul 26, 2018 3:01 am
Forum: General
Topic: Need ideeas for a game!
Replies: 31
Views: 23121

Re: Need ideeas for a game!

What genre?
Fantasy, Sci-fi, Apocalyptic, Post-apocalyptic, Romance, ... ?

What kind of game?
Platformer, MetroidVania, Isometric, Board-Game, Card Game,..?
by Duck Duckinson
Thu Jul 26, 2018 2:53 am
Forum: General
Topic: Player diagonal speed
Replies: 3
Views: 4227

Re: Player diagonal speed

The code is fine. Just make the speed adjustment in case both X and Y speeds are bigger than 0. Rewriting: function playerMovement() -- Contains the player movement logic if love.keyboard.isDown("w") then Player.y = Player.y - Player.speed * deltaT end if love.keyboard.isDown("a"...
by Duck Duckinson
Mon Jul 23, 2018 4:08 pm
Forum: Support and Development
Topic: Emacs Setup?
Replies: 5
Views: 6791

Re: Emacs Setup?

Just to add.
The "love-minor-mode" comes with the bindings M-p to run (play) the Löve2D project.