Jump to content

Recommended Posts

Posted

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.

Posted

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.

It doesn´t work... why? mhmmm It works... why?

Posted

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.

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...