Skip to content

Commit

Permalink
update thinbgys
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyH2 committed Mar 31, 2024
1 parent 6757403 commit 458b4bd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions src/screens/start/controllerAlign.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ class ControllerAlignScreen extends Screen {
renderGroup.add(object);
});
});

var mesh = new TextBox("Then click the app button", 0.07, 0.07, 50, 0xffffff);
mesh.position.z = -1;
mesh.position.y = -0.5;
mesh.lookAt( this.root.camera.position );

renderGroup.add( mesh );
};
};

Expand Down
6 changes: 4 additions & 2 deletions src/screens/start/welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

import { Screen } from "../screen.js";
import { TextBox } from "../../../utils/TextBox.js";
import { ActionsInfoScreen } from "./actionsInfo.js";
import { ControllerAlignScreen } from "./controllerAlign.js";
//import { ActionsInfoScreen } from "./actionsInfo.js";

class WelcomeScreen extends Screen {
constructor(root) {
Expand Down Expand Up @@ -38,7 +39,8 @@ class WelcomeScreen extends Screen {
renderGroup.add(logo);

setTimeout(() => {
this.renderScreen(new ActionsInfoScreen(this.root));
this.renderScreen(new ControllerAlignScreen(this.root));
//this.renderScreen(new ActionsInfoScreen(this.root));
}, 14000);
};
};
Expand Down

0 comments on commit 458b4bd

Please sign in to comment.