Skip to content

Commit c6d8511

Browse files
committed
strict raycast to false by default
1 parent 63fb25a commit c6d8511

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/lambda/config/groups/InteractionSettings.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class InteractionSettings(
5757
}
5858

5959
// Point scan
60-
override val strictRayCast by c.setting("Strict Raycast", true, "Whether to include the environment to the ray cast context", vis).group(baseGroup)
60+
override val strictRayCast by c.setting("Strict Raycast", false, "Whether to include the environment to the ray cast context", vis).group(baseGroup)
6161
override val checkSideVisibility by c.setting("Visibility Check", true, "Whether to check if an AABB side is visible", vis).group(baseGroup)
6262
override val resolution by c.setting("Resolution", 5, 1..20, 1, "The amount of grid divisions per surface of the hit box", "", vis).group(baseGroup)
6363
override val pointSelection by c.setting("Point Selection", PointSelection.Optimum, "The strategy to select the best hit point", vis).group(baseGroup)

0 commit comments

Comments
 (0)