Skip to content

Commit

Permalink
added missing parameters for some objects + minor tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
alhasacademy96 committed Aug 28, 2024
1 parent 0da22e8 commit 90dc048
Showing 1 changed file with 29 additions and 4 deletions.
33 changes: 29 additions & 4 deletions docs/configGuide/Arena-Objects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ arenas:
- !Vector3 {x: 35, y: 15, z: 9}
sizes:
- !Vector3 {x: 1, y: 1, z: 1}

- !Item
name: GoodGoalBounce
positions:
Expand Down Expand Up @@ -263,41 +264,65 @@ arenas:
- !Vector3 {x: 1, y: 1, z: 1}

- !Item
name: DecayGoal
name: DecoyGoal
positions:
- !Vector3 {x: 5, y: 16, z: 29}
- !Vector3 {x: 4, y: 14, z: 23}
sizes:
- !Vector3 {x: 1, y: 1, z: 1}

- !Item
name: DecoyGoal
name: DecoyGoalBounce
positions:
- !Vector3 {x: 4, y: 14, z: 23}
sizes:
- !Vector3 {x: 1, y: 1, z: 1}

- !Item
name: DecayGoal
positions:
- !Vector3 {x: 5, y: 16, z: 29}
sizes:
- !Vector3 {x: 1, y: 1, z: 1}
initialValues: [1]
finalValues: [1.5]
delays: [300]
changeRates: [-0.007]

- !Item
name: DecayGoalBounce
positions:
- !Vector3 {x: 6, y: 22, z: 40}
sizes:
- !Vector3 {x: 1, y: 1, z: 1}
initialValues: [1]
finalValues: [1.5]
delays: [300]
changeRates: [-0.007]

- !Item
name: GrowGoal
positions:
- !Vector3 {x: 3, y: 20, z: 38}
sizes:
- !Vector3 {x: 1, y: 1, z: 1}
initialValues: [1] # the initial size of the object.
finalValues: [3.5] # the final size of the object.
delays: [100] # any delay in seconds before the object starts to grow.
changeRates: [0.01] # the rate at which the object grows.

- !Item
name: ShrinkGoal
positions:
- !Vector3 {x: 9, y: 26, z: 16}
sizes:
- !Vector3 {x: 1, y: 1, z: 1}
initialValues: [2.5] # the initial size of the object.
finalValues: [1.5] # the final size of the object (after shrinking).
delays: [400] # any delay in seconds before the object starts to shrink.
changeRates: [-0.2] # the rate at which the object shrinks.

# ZONES

- !Item
name: HotZone
positions:
Expand Down

0 comments on commit 90dc048

Please sign in to comment.