Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
neuroprod committed Apr 2, 2024
1 parent 098f02a commit d089548
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
Binary file modified frontend/public/UI/note.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified frontend/public/UI/note.webp
Binary file not shown.
4 changes: 2 additions & 2 deletions frontend/public/copy.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@
"Two years have passed\nsince *GRANDPA* Died.",
"He always went\non adventures.",
"Looking for the\n*GOLDEN UNDERPANTS*\nof Genghis Khan",
"Nothing ever seem\nto happen to me.",
"I spend my days\nmaking website."
"Nothing ever seems\nto happen to me.",
"I spend my days\nmaking websites."
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/Main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ export default class Main {
GameModel.yMouseScale = 1;
GameModel.sceneHeight = 2.5;


this.lightIntroRenderPass.setDirty();
this.gBufferPass.modelRenderer = this.intro.modelRenderer
this.glassPass.modelRenderer = this.intro.modelRendererTrans;

Expand Down
6 changes: 4 additions & 2 deletions frontend/src/transitions/FindGirlPants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,20 @@ import {CURSOR} from "../ui/Cursor";

export default class FindGirlpaPants extends Transition{


lock =false;
set(onComplete: () => void){
super.set(onComplete)
GameModel.textHandler.showHitTrigger("findGirlPants")
GameModel.gameUI.cursor.show(CURSOR.NEXT)
GameModel.characterHandler.setMixAnimation("lookdown",1,0.5)
GameModel.characterHandler.face.lookDown()
this.lock =false;
}
onMouseDown(){
if(this.lock)return;
GameModel.gameUI.cursor.animate()
if(GameModel.textHandler.readNext()){

this.lock =true;
GameModel.gameUI.cursor.hide()
GameModel.characterHandler.setMixAnimation("lookdown",0,0.5)
GameModel.characterHandler.setAnimationOnce("crunchDown",0.2,this.onCrunchDown.bind(this))
Expand Down

0 comments on commit d089548

Please sign in to comment.