Kasrith Posted January 22, 2014 Share Posted January 22, 2014 Working my way through tutorials, but hoping to get an answer to this question before diving too far: How do I tell the game/demos to launch full screen instead of windowed mode? I found some Lua code in a search to do this, but I do not know where to place this line of code. The editor is still arcane to me, I cannot find how to open the Script Editor and I do not know where to put the code anyway. Normally I would keep following the tutorial flow, but windowed mode annoys me too much to continue using it if I can shortcut this part of the learning process. Quote Link to comment Share on other sites More sharing options...
DudeAwesome Posted January 22, 2014 Share Posted January 22, 2014 open App.lua there is a line like local window = Window:Create(self.title) just edit to local window = Window:Create(self.title, 0,0,x,y,Window.FullScreen) x and y = screensize like FullHD = 1920, 1080 note that the resolution is related to your hardware the scripteditor is a little bit hidden. I hope we get a Script Editor Button soon. To open the editor Run the game in debug mode or open a lua file in the filebrowser. Quote It doesn´t work... why? mhmmm It works... why? Link to comment Share on other sites More sharing options...
Kasrith Posted January 22, 2014 Author Share Posted January 22, 2014 Thank you very much DudeAwesome. I appreciate the quick and helpful response. Works great! Now back to learning! Maybe years of Lua for World of Warcraft mods will come in handy. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.