|
39 | 39 | [RequireComponent(typeof(CharacterController))]
|
40 | 40 | public class BasicPlatformerController : MonoBehaviour {
|
41 | 41 |
|
42 |
| -#if !UNITY_4_3 && !UNITY_4_4 |
| 42 | +#if UNITY_4_5 |
43 | 43 | [Header("Controls")]
|
44 | 44 | #endif
|
45 |
| - public string XAxis = "Horizontal"; |
46 |
| - public string YAxis = "Vertical"; |
47 |
| - public string JumpButton = "Jump"; |
| 45 | + public string XAxis = "Horizontal"; |
| 46 | + public string YAxis = "Vertical"; |
| 47 | + public string JumpButton = "Jump"; |
48 | 48 |
|
49 |
| -#if !UNITY_4_3 && !UNITY_4_4 |
| 49 | +#if UNITY_4_5 |
50 | 50 | [Header("Moving")]
|
51 | 51 | #endif
|
52 | 52 | public float walkSpeed = 4;
|
53 |
| - public float runSpeed = 10; |
54 |
| - public float gravity = 65; |
| 53 | + public float runSpeed = 10; |
| 54 | + public float gravity = 65; |
55 | 55 |
|
56 |
| -#if !UNITY_4_3 && !UNITY_4_4 |
| 56 | +#if UNITY_4_5 |
57 | 57 | [Header("Jumping")]
|
58 | 58 | #endif
|
59 | 59 | public float jumpSpeed = 25;
|
60 |
| - public float jumpDuration = 0.5f; |
61 |
| - public float jumpInterruptFactor = 100; |
62 |
| - public float forceCrouchVelocity = 25; |
63 |
| - public float forceCrouchDuration = 0.5f; |
| 60 | + public float jumpDuration = 0.5f; |
| 61 | + public float jumpInterruptFactor = 100; |
| 62 | + public float forceCrouchVelocity = 25; |
| 63 | + public float forceCrouchDuration = 0.5f; |
64 | 64 |
|
65 |
| -#if !UNITY_4_3 && !UNITY_4_4 |
| 65 | +#if UNITY_4_5 |
66 | 66 | [Header("Graphics")]
|
67 | 67 | #endif
|
68 | 68 | public Transform graphicsRoot;
|
69 |
| - public SkeletonAnimation skeletonAnimation; |
| 69 | + public SkeletonAnimation skeletonAnimation; |
70 | 70 |
|
71 |
| -#if !UNITY_4_3 && !UNITY_4_4 |
| 71 | +#if UNITY_4_5 |
72 | 72 | [Header("Animation")]
|
73 | 73 | #endif
|
74 | 74 | public string walkName = "Walk";
|
75 |
| - public string runName = "Run"; |
76 |
| - public string idleName = "Idle"; |
77 |
| - public string jumpName = "Jump"; |
78 |
| - public string fallName = "Fall"; |
79 |
| - public string crouchName = "Crouch"; |
| 75 | + public string runName = "Run"; |
| 76 | + public string idleName = "Idle"; |
| 77 | + public string jumpName = "Jump"; |
| 78 | + public string fallName = "Fall"; |
| 79 | + public string crouchName = "Crouch"; |
80 | 80 |
|
81 |
| -#if !UNITY_4_3 && !UNITY_4_4 |
| 81 | +#if UNITY_4_5 |
82 | 82 | [Header("Audio")]
|
83 | 83 | #endif
|
84 | 84 | public AudioSource jumpAudioSource;
|
85 | 85 | public AudioSource hardfallAudioSource;
|
86 | 86 | public AudioSource footstepAudioSource;
|
87 | 87 | public string footstepEventName = "Footstep";
|
88 |
| - |
89 |
| - |
90 |
| - |
91 |
| - CharacterController controller; |
92 |
| - Vector2 velocity = Vector2.zero; |
93 |
| - Vector2 lastVelocity = Vector2.zero; |
94 |
| - bool lastGrounded = false; |
95 |
| - float jumpEndTime = 0; |
96 |
| - bool jumpInterrupt = false; |
97 |
| - float forceCrouchEndTime; |
98 |
| - |
99 |
| - |
100 |
| - Quaternion flippedRotation = Quaternion.Euler(0, 180, 0); |
101 |
| - |
102 |
| - void Awake() |
103 |
| - { |
104 |
| - controller = GetComponent<CharacterController>(); |
| 88 | + CharacterController controller; |
| 89 | + Vector2 velocity = Vector2.zero; |
| 90 | + Vector2 lastVelocity = Vector2.zero; |
| 91 | + bool lastGrounded = false; |
| 92 | + float jumpEndTime = 0; |
| 93 | + bool jumpInterrupt = false; |
| 94 | + float forceCrouchEndTime; |
| 95 | + Quaternion flippedRotation = Quaternion.Euler(0, 180, 0); |
| 96 | + |
| 97 | + void Awake () { |
| 98 | + controller = GetComponent<CharacterController>(); |
105 | 99 | }
|
106 | 100 |
|
107 |
| - void Start(){ |
| 101 | + void Start () { |
108 | 102 | //register a callback for Spine Events (in this case, Footstep)
|
109 | 103 | skeletonAnimation.state.Event += HandleEvent;
|
110 | 104 | }
|
111 | 105 |
|
112 |
| - void HandleEvent (Spine.AnimationState state, int trackIndex, Spine.Event e) |
113 |
| - { |
| 106 | + void HandleEvent (Spine.AnimationState state, int trackIndex, Spine.Event e) { |
114 | 107 | //play some sound if footstep event fired
|
115 |
| - if(e.Data.Name == footstepEventName){ |
| 108 | + if (e.Data.Name == footstepEventName) { |
116 | 109 | footstepAudioSource.Stop();
|
117 | 110 | footstepAudioSource.Play();
|
118 | 111 | }
|
119 |
| - } |
120 |
| - |
121 |
| - void Update() |
122 |
| - { |
123 |
| - //control inputs |
124 |
| - float x = Input.GetAxis(XAxis); |
125 |
| - float y = Input.GetAxis(YAxis); |
126 |
| - //check for force crouch |
127 |
| - bool crouching = (controller.isGrounded && y < -0.5f) || (forceCrouchEndTime > Time.time); |
128 |
| - velocity.x = 0; |
129 |
| - |
130 |
| - //Calculate control velocity |
131 |
| - if (!crouching) { |
132 |
| - if (Input.GetButtonDown(JumpButton) && controller.isGrounded) |
133 |
| - { |
134 |
| - //jump |
| 112 | + } |
| 113 | + |
| 114 | + void Update () { |
| 115 | + //control inputs |
| 116 | + float x = Input.GetAxis(XAxis); |
| 117 | + float y = Input.GetAxis(YAxis); |
| 118 | + //check for force crouch |
| 119 | + bool crouching = (controller.isGrounded && y < -0.5f) || (forceCrouchEndTime > Time.time); |
| 120 | + velocity.x = 0; |
| 121 | + |
| 122 | + //Calculate control velocity |
| 123 | + if (!crouching) { |
| 124 | + if (Input.GetButtonDown(JumpButton) && controller.isGrounded) { |
| 125 | + //jump |
135 | 126 | jumpAudioSource.Stop();
|
136 | 127 | jumpAudioSource.Play();
|
137 |
| - velocity.y = jumpSpeed; |
138 |
| - jumpEndTime = Time.time + jumpDuration; |
139 |
| - } |
140 |
| - else if (Time.time < jumpEndTime && Input.GetButtonUp(JumpButton)) |
141 |
| - { |
142 |
| - jumpInterrupt = true; |
143 |
| - } |
| 128 | + velocity.y = jumpSpeed; |
| 129 | + jumpEndTime = Time.time + jumpDuration; |
| 130 | + } else if (Time.time < jumpEndTime && Input.GetButtonUp(JumpButton)) { |
| 131 | + jumpInterrupt = true; |
| 132 | + } |
144 | 133 |
|
145 | 134 |
|
146 |
| - if (x != 0) |
147 |
| - { |
148 |
| - //walk or run |
149 |
| - velocity.x = Mathf.Abs(x) > 0.6f ? runSpeed : walkSpeed; |
150 |
| - velocity.x *= Mathf.Sign(x); |
151 |
| - } |
152 |
| - |
153 |
| - if (jumpInterrupt) |
154 |
| - { |
155 |
| - //interrupt jump and smoothly cut Y velocity |
156 |
| - if (velocity.y > 0) |
157 |
| - { |
158 |
| - velocity.y = Mathf.MoveTowards(velocity.y, 0, Time.deltaTime * 100); |
159 |
| - } |
160 |
| - else |
161 |
| - { |
162 |
| - jumpInterrupt = false; |
163 |
| - } |
164 |
| - } |
165 |
| - } |
166 |
| - |
167 |
| - //apply gravity F = mA (Learn it, love it, live it) |
168 |
| - velocity.y -= gravity * Time.deltaTime; |
169 |
| - |
170 |
| - //move |
171 |
| - controller.Move(new Vector3(velocity.x, velocity.y, 0) * Time.deltaTime); |
| 135 | + if (x != 0) { |
| 136 | + //walk or run |
| 137 | + velocity.x = Mathf.Abs(x) > 0.6f ? runSpeed : walkSpeed; |
| 138 | + velocity.x *= Mathf.Sign(x); |
| 139 | + } |
| 140 | + |
| 141 | + if (jumpInterrupt) { |
| 142 | + //interrupt jump and smoothly cut Y velocity |
| 143 | + if (velocity.y > 0) { |
| 144 | + velocity.y = Mathf.MoveTowards(velocity.y, 0, Time.deltaTime * 100); |
| 145 | + } else { |
| 146 | + jumpInterrupt = false; |
| 147 | + } |
| 148 | + } |
| 149 | + } |
| 150 | + |
| 151 | + //apply gravity F = mA (Learn it, love it, live it) |
| 152 | + velocity.y -= gravity * Time.deltaTime; |
| 153 | + |
| 154 | + //move |
| 155 | + controller.Move(new Vector3(velocity.x, velocity.y, 0) * Time.deltaTime); |
172 | 156 |
|
173 |
| - if (controller.isGrounded) |
174 |
| - { |
175 |
| - //cancel out Y velocity if on ground |
176 |
| - velocity.y = -gravity * Time.deltaTime; |
177 |
| - jumpInterrupt = false; |
178 |
| - } |
| 157 | + if (controller.isGrounded) { |
| 158 | + //cancel out Y velocity if on ground |
| 159 | + velocity.y = -gravity * Time.deltaTime; |
| 160 | + jumpInterrupt = false; |
| 161 | + } |
179 | 162 |
|
180 | 163 |
|
181 |
| - Vector2 deltaVelocity = lastVelocity - velocity; |
182 |
| - |
183 |
| - if (!lastGrounded && controller.isGrounded) |
184 |
| - { |
185 |
| - //detect hard fall |
186 |
| - if ((gravity*Time.deltaTime) - deltaVelocity.y > forceCrouchVelocity) |
187 |
| - { |
188 |
| - forceCrouchEndTime = Time.time + forceCrouchDuration; |
| 164 | + Vector2 deltaVelocity = lastVelocity - velocity; |
| 165 | + |
| 166 | + if (!lastGrounded && controller.isGrounded) { |
| 167 | + //detect hard fall |
| 168 | + if ((gravity * Time.deltaTime) - deltaVelocity.y > forceCrouchVelocity) { |
| 169 | + forceCrouchEndTime = Time.time + forceCrouchDuration; |
189 | 170 | hardfallAudioSource.Play();
|
190 |
| - } |
191 |
| - else{ |
| 171 | + } else { |
192 | 172 | //play footstep audio if light fall because why not
|
193 | 173 | footstepAudioSource.Play();
|
194 | 174 | }
|
195 | 175 |
|
196 |
| - } |
197 |
| - |
198 |
| - //graphics updates |
199 |
| - if (controller.isGrounded) |
200 |
| - { |
201 |
| - if (crouching) //crouch |
202 |
| - { |
203 |
| - skeletonAnimation.AnimationName = crouchName; |
204 |
| - } |
205 |
| - else |
206 |
| - { |
207 |
| - |
208 |
| - if (x == 0) //idle |
209 |
| - skeletonAnimation.AnimationName = idleName; |
210 |
| - else //move |
211 |
| - skeletonAnimation.AnimationName = Mathf.Abs(x) > 0.6f ? runName : walkName; |
212 |
| - } |
213 |
| - } |
214 |
| - else |
215 |
| - { |
216 |
| - if (velocity.y > 0) //jump |
217 |
| - skeletonAnimation.AnimationName = jumpName; |
218 |
| - else //fall |
219 |
| - skeletonAnimation.AnimationName = fallName; |
220 |
| - |
221 |
| - } |
| 176 | + } |
222 | 177 |
|
223 |
| - //flip left or right |
224 |
| - if (x > 0) |
225 |
| - graphicsRoot.localRotation = Quaternion.identity; |
226 |
| - else if (x < 0) |
227 |
| - graphicsRoot.localRotation = flippedRotation; |
| 178 | + //graphics updates |
| 179 | + if (controller.isGrounded) { |
| 180 | + if (crouching) { //crouch |
| 181 | + skeletonAnimation.AnimationName = crouchName; |
| 182 | + } else { |
| 183 | + if (x == 0) //idle |
| 184 | + skeletonAnimation.AnimationName = idleName; |
| 185 | + else //move |
| 186 | + skeletonAnimation.AnimationName = Mathf.Abs(x) > 0.6f ? runName : walkName; |
| 187 | + } |
| 188 | + } else { |
| 189 | + if (velocity.y > 0) //jump |
| 190 | + skeletonAnimation.AnimationName = jumpName; |
| 191 | + else //fall |
| 192 | + skeletonAnimation.AnimationName = fallName; |
| 193 | + } |
228 | 194 |
|
| 195 | + //flip left or right |
| 196 | + if (x > 0) |
| 197 | + graphicsRoot.localRotation = Quaternion.identity; |
| 198 | + else if (x < 0) |
| 199 | + graphicsRoot.localRotation = flippedRotation; |
229 | 200 |
|
230 |
| - //store previous state |
231 |
| - lastVelocity = velocity; |
232 |
| - lastGrounded = controller.isGrounded; |
233 |
| - } |
| 201 | + |
| 202 | + //store previous state |
| 203 | + lastVelocity = velocity; |
| 204 | + lastGrounded = controller.isGrounded; |
| 205 | + } |
234 | 206 | }
|
0 commit comments