File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
src/Typings/LightmapSettings Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,10 @@ const OUT = new Soup(Object);
55
66class LightmapSettings {
77 constructor ( settings ) {
8- let baseSettings = this . extend ( this . parent . BaseSettings , settings ) ;
8+ let fixedSettings = this . parent . __formSettings ( this , settings ) ;
9+ this . extend ( this . parent . BaseSettings , fixedSettings ) ;
910
10- this . GIWorkflowMode = this . __getSetting ( "m_GIWorkflowMode" , settings ) ;
11- this . GISettings = new this . parent . GISettings ( settings , baseSettings ) ;
12- this . lightmapEditorSettings = new this . parent . LightmapEditorSettings ( settings , baseSettings ) ;
13- this . lighting = new this . parent . Lighting ( settings , baseSettings ) ;
11+ this . lightmapEditorSettings = new this . parent . BuildSettings ( fixedSettings . LightmapEditorSettings ) ;
1412 }
1513}
1614
You can’t perform that action at this time.
0 commit comments