Search found 4 matches

by SatoKato
Tue Jun 27, 2017 5:51 pm
Forum: Support and Development
Topic: Tiled to Love2D Tutorial?
Replies: 3
Views: 7722

Re: Tiled to Love2D Tutorial?

mastermarkus wrote: Tue Jun 27, 2017 5:18 pm Check out youtube tutoriols on Love2d Tiled, there are plenty of those :)
thanks, I will look out,

thanks the tutorial will help me out .
by SatoKato
Tue Jun 27, 2017 4:58 pm
Forum: Support and Development
Topic: Tiled to Love2D Tutorial?
Replies: 3
Views: 7722

Tiled to Love2D Tutorial?

Hello!

Is there a good tutorial covering the Tiled software to Love2D? In Tiled, I clicked the export to Lua, and now I need to know how to import it in Love2D.



thanks for your times.
by SatoKato
Sun Jun 04, 2017 6:44 pm
Forum: Support and Development
Topic: Dumb question : Love.config(t)
Replies: 6
Views: 5873

Re: Dumb question : Love.config(t)

Hello, I created a config.lua with this code: function love.conf(t) t.window.width = 1280 t.window.height = 720 t.modules.joystick = false end Is there a way to call it in main.lua? :o thanks for your times! lua also checks for a file named conf.lua, if that exists, lua will automatically run that....
by SatoKato
Sun Jun 04, 2017 2:58 pm
Forum: Support and Development
Topic: Dumb question : Love.config(t)
Replies: 6
Views: 5873

Dumb question : Love.config(t)

Hello, I created a config.lua with this code:

Code: Select all

function love.conf(t)
    t.window.width = 1280
    t.window.height = 720  
    t.modules.joystick = false
    end
Is there a way to call it in main.lua? :o

thanks for your times!