Advertisement
illwieckz

func_door_rotating

Apr 4th, 2023
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. func_door_rotating
  2.  
  3. Xonotic:
  4.  
  5. <flag key="START_OPEN" name="START_OPEN" bit="0">causes the door to move to its destination when spawned, and operate in reverse. It is used to temporarily or permanently close off an area when triggered (not useful for touch or damage triggered doors).</flag>
  6. <flag key="DOOR_DONT_LINK" name="DOOR_DONT_LINK" bit="2">the door won't link with another door it touches</flag>
  7. <flag key="TOGGLE" name="TOGGLE" bit="5">causes the door to wait in both the start and end states for a trigger event.</flag>
  8. <flag key="NOSPLASH" name="NOSPLASH" bit="8">if set, splash damage cannot activate the door, only direct damage can (requires health to be set)</flag>
  9. <flag key="X_AXIS" name="X_AXIS" bit="6">rotate around the X axis</flag>
  10. <flag key="Y_AXIS" name="Y_AXIS" bit="7">rotate around the Y axis</flag>
  11. <flag key="BIDIR" name="BIDIR" bit="1">door can open in both directions</flag>
  12. <flag key="BIDIR_IN_DOWN" name="BIDIR_IN_DOWN" bit="3">don't reopen the door while closing if it's triggered from the wrong side</flag>
  13. <flag key="CRUSH" name="CRUSH" bit="11">crush players hit by the door instantly</flag>
  14.  
  15. Unvanquished:
  16.  
  17. <flag key="START_OPEN" name="START_OPEN" bit="0">the door will spawn in the open state and operate in reverse.</flag>
  18. <flag key="CRUSHER" name="CRUSHER" bit="2">Door will not reverse direction when blocked and will keep damaging player or building until it dies or gets out of the way.</flag>
  19. <flag key="REVERSE" name="REVERSE" bit="3">the door will open the other way.</flag>
  20. <flag key="X_AXIS" name="X_AXIS" bit="5">rotate around the X axis instead of the Z.</flag>
  21. <flag key="Y_AXIS" name="Y_AXIS" bit="6">rotate around the Y axis instead of the Z.</flag>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement