Haydenmango Posted August 18, 2016 Share Posted August 18, 2016 Ever since a recent beta update my games window will not render. http://www.leadwerks.com/werkspace/blog/1/entry-1746-beta-update-available/ I saw that this was an issue others were having as well and that it has been supposedly fixed. http://www.leadwerks.com/werkspace/topic/14952-contextgetwidth-contextgetheight-no-longer-return-valid-info/ My game window still will not render if I use the beta and I can't seem to find out why. I can revert to the current build and my game window renders correctly. There are no errors being shown and everything is loading the same way as far as I can tell. I am using the Indie Edition and I can provide my project if needed. Link to a video I made to show my issue - Check out my game Rogue Snowboarding- https://haydenmango.itch.io/roguesnowboarding Link to comment Share on other sites More sharing options...
Josh Posted August 25, 2016 Share Posted August 25, 2016 Is this still occurring with the current beta build? My job is to make tools you love, with the features you want, and performance you can't live without. Link to comment Share on other sites More sharing options...
Haydenmango Posted August 26, 2016 Author Share Posted August 26, 2016 Yeah, I just checked and it is still happening. Check out my game Rogue Snowboarding- https://haydenmango.itch.io/roguesnowboarding Link to comment Share on other sites More sharing options...
Josh Posted August 26, 2016 Share Posted August 26, 2016 Can you please post the code you use to create your window? My job is to make tools you love, with the features you want, and performance you can't live without. Link to comment Share on other sites More sharing options...
Haydenmango Posted August 27, 2016 Author Share Posted August 27, 2016 Macklebee helped me figure this one out. I had this as my window creation line - self.window = Window:Create(self.title, 0,0,self.resolutions[self.rescounter].x,self.resolutions[self.rescounter].y,64) then I changed it to this and now it works! - local windowstyle=window.Titlebar windowstyle=windowstyle+window.FullScreen self.window = Window:Create(self.title, 0,0,self.resolutions[self.rescounter].x,self.resolutions[self.rescounter].y,windowstyle) 1 Check out my game Rogue Snowboarding- https://haydenmango.itch.io/roguesnowboarding Link to comment Share on other sites More sharing options...
Recommended Posts