Skip to content

Commit

Permalink
fix(event-display): fix load state throwing error
Browse files Browse the repository at this point in the history
  • Loading branch information
9inpachi committed Jul 15, 2021
1 parent d733078 commit 16ea0df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class StateManager {
phoenixMenu: this.phoenixMenuRoot.getNodeState(),
eventDisplay: {
cameraPosition: this.activeCamera.position.toArray(),
clippingAngle: this.clippingEnabled ? this.clippingAngle : null,
clippingAngle: this.clippingEnabled.value ? this.clippingAngle.value : null,
},
};

Expand Down

0 comments on commit 16ea0df

Please sign in to comment.