Skip to content

Commit

Permalink
SpellType as String
Browse files Browse the repository at this point in the history
  • Loading branch information
aratama committed Jan 24, 2025
1 parent b85bfc1 commit 5686e4c
Show file tree
Hide file tree
Showing 32 changed files with 799 additions and 849 deletions.
15 changes: 9 additions & 6 deletions assets/registry.actor.ron
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

// https://github.com/ron-rs/ron/blob/master/docs/extensions.md
#![enable(unwrap_newtypes)]
#![enable(implicit_some)]
ActorRegistry(
dumping_on_ice: 0.1,
dumping_on_air: 0.5,
Expand All @@ -12,7 +15,7 @@ ActorRegistry(
move_force: 40000.0,
jump: 0.0,
linear_damping: 6.0,
blood: Some(Red),
blood: Red,
defreeze: 1,
auto_levitation: false,
cry: true
Expand All @@ -22,7 +25,7 @@ ActorRegistry(
move_force: 40000.0,
jump: 1.5,
linear_damping: 10.0,
blood: Some(Red),
blood: Red,
defreeze: 1,
auto_levitation: false,
cry: true
Expand All @@ -32,7 +35,7 @@ ActorRegistry(
move_force: 60000.0,
jump: 1.5,
linear_damping: 10.0,
blood: Some(Red),
blood: Red,
defreeze: 1,
auto_levitation: false,
cry: true
Expand All @@ -42,7 +45,7 @@ ActorRegistry(
move_force: 100000.0,
jump: 0.0,
linear_damping: 10.0,
blood: Some(Red),
blood: Red,
defreeze: 1,
auto_levitation: true,
cry: true
Expand All @@ -62,7 +65,7 @@ ActorRegistry(
move_force: 50000.0,
jump: 0.0,
linear_damping: 10.0,
blood: Some(Blue),
blood: Blue,
defreeze: 1,
auto_levitation: false,
cry: true
Expand All @@ -72,7 +75,7 @@ ActorRegistry(
move_force: 100000.0,
jump: 0.0,
linear_damping: 10.0,
blood: Some(Red),
blood: Red,
defreeze: 2,
auto_levitation: false,
cry: true
Expand Down
Loading

0 comments on commit 5686e4c

Please sign in to comment.