Skip to content

Commit

Permalink
Integrate flipped map modes from simple physics
Browse files Browse the repository at this point in the history
  • Loading branch information
grillo-delmal committed Mar 2, 2024
1 parent def4d5a commit 33184e2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions source/creator/panels/inspector.d
Original file line number Diff line number Diff line change
Expand Up @@ -1248,6 +1248,10 @@ void incInspectorModelSimplePhysics(SimplePhysics node) {

if (igSelectable(__("XY"), node.mapMode == ParamMapMode.XY)) node.mapMode = ParamMapMode.XY;

if (igSelectable(__("LengthAngle"), node.mapMode == ParamMapMode.LengthAngle)) node.mapMode = ParamMapMode.LengthAngle;

if (igSelectable(__("YX"), node.mapMode == ParamMapMode.YX)) node.mapMode = ParamMapMode.YX;

igEndCombo();
}

Expand Down

0 comments on commit 33184e2

Please sign in to comment.