bugfix - buildTypes flags in jumpLinkBuilderToolParams

This commit is contained in:
ikpil 2023-03-26 14:13:36 +09:00
parent 44e6ea8368
commit cd4ea6d622
1 changed files with 1 additions and 1 deletions

View File

@ -39,5 +39,5 @@ public class JumpLinkBuilderToolParams
public float edgeJumpHeight = 0.4f; public float edgeJumpHeight = 0.4f;
public float edgeJumpDownMaxHeight = 2.5f; public float edgeJumpDownMaxHeight = 2.5f;
public float edgeJumpUpMaxHeight = 0.3f; public float edgeJumpUpMaxHeight = 0.3f;
public int buildTypes = (1 << JumpLinkType.EDGE_CLIMB_DOWN.Bit) | (1 << JumpLinkType.EDGE_JUMP.Bit); public int buildTypes = JumpLinkType.EDGE_CLIMB_DOWN.Bit | JumpLinkType.EDGE_JUMP.Bit;
} }