File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ class BootScreen extends Screen {
7070 this . uiTemplates . add ( '16' , '3D Physics With Jolt' ) ;
7171 this . uiTemplates . add ( '17' , '2D Physics With Box2D' ) ;
7272 this . uiTemplates . add ( '18' , '3D Pre-rendered (zbuffer)' ) ;
73+ this . uiTemplates . add ( '19' , '3D Car' ) ;
7374 this . uiTemplates . setVisible ( false ) ;
7475 uiManager . addWidget ( this . uiTemplates , 'position:absolute; top:50%; left:50%; width:60%; transform:translate(-50%,-50%);' ) ;
7576
@@ -179,6 +180,9 @@ class BootScreen extends Screen {
179180 case '18' :
180181 screenManager . requestSetScreen ( new PrerenderedScreen ( true ) ) ;
181182 break ;
183+ case '19' :
184+ screenManager . requestSetScreen ( new CarScreen ( ) ) ;
185+ break ;
182186 default :
183187 console . log ( 'Unknown template ID:' , data . id ) ;
184188 }
You can’t perform that action at this time.
0 commit comments