Skip to content

Commit

Permalink
minor speed change
Browse files Browse the repository at this point in the history
  • Loading branch information
dzsunyec committed Feb 23, 2024
1 parent 2b606ed commit ac4872b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/back-ports/backPorts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function _teleportToString(coords:string) {
log("_teleportTo - Coordinates:", coords)
let separator = ","
let coordsArray = coords.split(separator)
log("_Converted - Coordinates: X:", coordsArray[0] + " Y: " + coordsArray[1])
//log("_Converted - Coordinates: X:", coordsArray[0] + " Y: " + coordsArray[1])
teleportTo({
worldCoordinates: { x: parseInt(coordsArray[0]) , y: parseInt(coordsArray[1]) }
})
Expand Down
2 changes: 1 addition & 1 deletion src/lobby/menuItemEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export class EventMenuItem extends MenuItem {
highlightScale: Vector3.create(2.3, 2.3, 2.3),
animFraction: 0,
animVeclocity: 0,
speed: 0.5,
speed: 0.7,
done: false
})

Expand Down

0 comments on commit ac4872b

Please sign in to comment.