Skip to content

Commit b8d74c4

Browse files
committed
Enable bugs on The Outlet Mobile
1 parent 18b57dd commit b8d74c4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/js/ProckStackGitio.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ userSettings['headBounce']['easeOut'] = 0.95; // When move key is let go, the ea
6868
userSettings['jump']['impulse'] = 0.75; // Jump impulse force applied to the player while holding the jump button
6969
userSettings['jump']['holdMax'] = 2.85; // Max influence of holding the jump button on current jump; in seconds
7070
userSettings['jump']['repeatDelay'] = 0.08; // Delay between jumps when holding the jump button
71-
userSettings['gravity']['UPS'] = 0.3; // Units per Step() per Step()
72-
userSettings['gravity']['Max'] = 15.5; // Max gravity rate
71+
userSettings['gravity']['ups'] = 0.3; // Units per Step() per Step()
72+
userSettings['gravity']['max'] = 15.5; // Max gravity rate
7373

7474
// -- -- --
7575

docs/js/pxlNavLoader.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const loaderPhrases = [
4949
// User settings for the default/initial pxlNav environment
5050
// These can be adjusted from your `pxlRoom` but easily set defaults here
5151
const userSettings = Object.assign({}, pxlUserSettings);
52-
userSettings['height']['standing'] = 1.75; // Standing height in units; any camera in your room's FBX will override this height once loaded
52+
userSettings['height']['standing'] = 22.5; // Standing height in units; any camera in your room's FBX will override this height once loaded
5353
userSettings['height']['stepSize'] = 5; // Max step height in units
5454
userSettings['movement']['scalar'] = 1.0; // Overall movement rate scalar
5555
userSettings['movement']['max'] = 10.0; // Max movement speed
@@ -60,9 +60,9 @@ userSettings['headBounce']['easeIn'] = 0.03; // When move key is pressed, the ea
6060
userSettings['headBounce']['easeOut'] = 0.95; // When move key is let go, the ease back to no bounce; `bounce * easeOut`
6161
userSettings['jump']['impulse'] = 0.60; // Jump impulse force applied to the player while holding the jump button
6262
userSettings['jump']['holdMax'] = 2.85; // Max influence of holding the jump button on current jump; in seconds
63-
userSettings['jump']['repeatDelay'] = 0.08; // Delay between jumps when holding the jump button
64-
userSettings['gravity']['UPS'] = 0.28; // Units per Step() per Step()
65-
userSettings['gravity']['Max'] = 15.5; // Max gravity rate
63+
userSettings['jump']['repeatDelay'] = 0.085; // Delay between jumps when holding the jump button
64+
userSettings['gravity']['ups'] = 0.28; // Units per Step() per Step()
65+
userSettings['gravity']['max'] = 15.5; // Max gravity rate
6666

6767
// -- -- --
6868

docs/js/pxlRooms/OutletEnvironment/OutletEnvironment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ buildDust(){
159159
}
160160

161161
builBugs(){
162-
if( this.mobile ) return;
162+
//if( this.mobile ) return;
163163

164164
let vertexCount = 500; // Point Count
165165
let pScale = 10.0; // Point Base Scale

0 commit comments

Comments
 (0)