Skip to content

Commit

Permalink
Adjust some conditions
Browse files Browse the repository at this point in the history
Make the new bool nodes actually work when selected
  • Loading branch information
DoobesURU committed Jul 1, 2022
1 parent 25ebf58 commit 357bd8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions korman/properties/modifiers/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,10 +691,12 @@ def _create_moul_nodes(self, clickable_object, nodes, linkingnode, age_name, clk
# Odds and Ends
stamped = nodes.new("PlasmaAttribBoolNode")
stamped.link_output(linkingnode, "pfm", "IsDRCStamped")
stamped.value = self.drc_stamp
if not self.drc_stamp:
stamped.value = False
forcecam = nodes.new("PlasmaAttribBoolNode")
forcecam.link_output(linkingnode, "pfm", "ForceThirdPerson")
forcecam.value = self.third_person
if self.third_person:
forcecam.value = True

def sanity_check(self):
if self.clickable is None:
Expand Down

0 comments on commit 357bd8c

Please sign in to comment.