Editor Folders #4026
Replies: 3 comments 4 replies
-
I'm curious if this broke loading Game Resources in the menu. I can load my own Game Resources and Prefabs, but I cannot load any Game Resources from libraries such as the SDF Library while in the menu. |
Beta Was this translation helpful? Give feedback.
-
Great change! Might be worth noting that // Layout top to bottom
SetLayout( LayoutMode.TopToBottom ); -> // Layout top to bottom
Layout = Layout.Column(); |
Beta Was this translation helpful? Give feedback.
-
This issue is probably related to editor folders so I'll put it here, can't imagine it'd be a hard fix: #4041 |
Beta Was this translation helpful? Give feedback.
-
A folder named Editor in your game project's code folder will become an Editor project.
Editor projects can access both the editor and the game addon. They are not sandboxed. They access the GameMenu instance only (not client or server).
To avoid conflicts, some editor apis changed in the Editor.
I chose to rename these since changing the game ones would have broken all released games.
Beta Was this translation helpful? Give feedback.
All reactions