Added more materials to terrain material map

This commit is contained in:
Rob Kelly 2025-01-02 13:29:04 -07:00
parent a05e3e2976
commit e255d26239
2 changed files with 4 additions and 0 deletions

View File

@ -248,6 +248,8 @@ locale/translations=PackedStringArray("res://assets/text/text.en.translation")
3d_physics/layer_1="Collision Geometry" 3d_physics/layer_1="Collision Geometry"
3d_physics/layer_2="Water" 3d_physics/layer_2="Water"
3d_physics/layer_25="Green Material"
3d_physics/layer_26="Fairway Material"
3d_physics/layer_27="Glass Material" 3d_physics/layer_27="Glass Material"
3d_physics/layer_28="Metal Material" 3d_physics/layer_28="Metal Material"
3d_physics/layer_29="Rock Material" 3d_physics/layer_29="Rock Material"

View File

@ -24,6 +24,8 @@ const PHYSICAL_LAYERS := {
1 << 28: Type.ROCK, 1 << 28: Type.ROCK,
1 << 27: Type.METAL, 1 << 27: Type.METAL,
1 << 26: Type.GLASS, 1 << 26: Type.GLASS,
1 << 25: Type.FAIRWAY,
1 << 24: Type.GREEN,
} }