Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
HunterBarclay committed Sep 23, 2024
1 parent bcd59b9 commit 306d807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fission/src/systems/scene/GizmoSceneObject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class GizmoSceneObject extends SceneObject {
}
case "rotate": {
// snap if alt is pressed
event.target.rotationSnap = isAlt ? (Math.PI * (1.0 / 12.0)) : null
event.target.rotationSnap = isAlt ? Math.PI * (1.0 / 12.0) : null

// disable scale gizmos added to the same object
const gizmos = [...World.SceneRenderer.gizmosOnMirabuf.values()]
Expand Down

0 comments on commit 306d807

Please sign in to comment.