UI clean-up

This commit is contained in:
2025-01-03 16:15:48 +01:00
parent 03b84515e7
commit e6c7b2ab0c
6 changed files with 73 additions and 44 deletions

View File

@@ -64,14 +64,14 @@ Collider :: struct {
Physics_Body :: struct {
enabled: bool = true;
velocity: Vector3;
velocity: Vector3; @DontSerialize
friction : float = 0.0;
bounciness : float = 0.0;
linear_damping : float = 0.0;
friction : float = 0.0; @DontSerialize
bounciness : float = 0.0; @DontSerialize
linear_damping : float = 0.0; @DontSerialize
check_for_grounded: bool;
grounded: bool;
check_for_grounded: bool; @DontSerialize
grounded: bool; @DontSerialize
}
update_mesh_collider :: (e: *Entity) {