1.4.5
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Pages1
#2
Development / Re: Window Freezes, No Logo
March 06, 2016, 09:22:01 PM
I use my keyboard. I did a bit of research and it seems like Mac users have had this problem in the past.
#3
Development / Re: Window Freezes, No Logo
March 06, 2016, 05:51:44 AM
So, I fixed my original problem. I didn't transfer the resource pack data correctly. That's my bad. But now, I can't get my character to move. The video tutorial shows the hero moving according to keys once a game has started. Mine stays still and does not move. This is also the case for the sample quest that I start up. Is it me again? Am I missing some code?
#4
Development / Re: Window Freezes, No Logo
March 05, 2016, 09:38:20 PMfunction sol.main:on_started()
print("This is a sample quest for Solarus.")
sol.language.set_language("en")
local solarus_logo = require("menus/solarus_logo")
sol.menu.start(self, solarus_logo)
solarus_logo.on_finished = function()
local exists = sol.game.exists("save1.dat")
local game = sol.game.load("save1.dat")
if not exists then
game:set_starting_location("Start")
game:start()
end
end
end
#5
Development / Re: Window Freezes, No Logo
March 05, 2016, 03:07:13 PM
No. I looked everywhere for one and none showed up.
#6
Development / Window Freezes, No Logo
March 05, 2016, 05:37:05 AM
I'm new to Solarus and I've been following the video tutorials. I stopped halfway through the second one and made a few small maps. I continued and watched the rest of it and then edited the main.lua script accordingly so my game could run. Every time I try to run it, the new window pops up but it's just black. Nothing happens at all, not even the logo. I'm tearing out my hair trying to figure out what is wrong. Any suggestions? Help?
Pages1