2021-07-19 11:45:08 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class PlayerControls : MonoBehaviour
|
|
|
|
{
|
2021-07-19 21:10:31 +02:00
|
|
|
public Animator animator;
|
2021-07-20 18:04:44 +02:00
|
|
|
public PhysicsMaterial2D top;
|
2021-07-21 09:33:24 +02:00
|
|
|
public Rigidbody2D rb;
|
|
|
|
public AudioClip RotateSFX;
|
|
|
|
|
2021-07-20 18:52:15 +02:00
|
|
|
public SpriteRenderer sprite;
|
2021-07-20 18:04:44 +02:00
|
|
|
public PhysicsMaterial2D bottom;
|
2021-07-19 19:27:02 +02:00
|
|
|
public CharacterController2D controller;
|
2021-07-21 09:54:17 +02:00
|
|
|
public RigidbodyConstraints2D topx;
|
|
|
|
public RigidbodyConstraints2D bottomx;
|
2021-07-21 09:33:24 +02:00
|
|
|
public AudioSource sfx;
|
2021-07-19 19:27:02 +02:00
|
|
|
public float runspeed = 40f;
|
2021-07-19 21:10:31 +02:00
|
|
|
float horizonatalaxis = 0f;
|
2021-07-20 19:12:51 +02:00
|
|
|
|
2021-07-19 19:27:02 +02:00
|
|
|
bool jumping = false;
|
2021-07-20 18:04:44 +02:00
|
|
|
bool switchy = false;
|
|
|
|
|
2021-07-19 11:45:08 +02:00
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
2021-07-19 21:10:31 +02:00
|
|
|
|
|
|
|
horizonatalaxis = Input.GetAxisRaw("Horizontal");
|
2021-07-19 19:27:02 +02:00
|
|
|
jumping = Input.GetButton("Jump") || Input.GetAxisRaw("Vertical") > 0;
|
2021-07-19 21:10:31 +02:00
|
|
|
animator.SetFloat("Horizontal_speed", horizonatalaxis);
|
2021-07-20 18:23:19 +02:00
|
|
|
|
|
|
|
if(Input.GetButtonDown("Switch")) {
|
|
|
|
switchy = !switchy;
|
2021-07-20 19:12:51 +02:00
|
|
|
if (switchy){
|
|
|
|
sprite.flipY = true;
|
2021-07-21 09:54:17 +02:00
|
|
|
rb.constraints = topx;
|
2021-07-21 09:33:24 +02:00
|
|
|
rb.sharedMaterial = top;
|
2021-07-20 19:12:51 +02:00
|
|
|
controller.m_JumpForce = controller.m_JumpForce * 1.2f;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sprite.flipY = false;
|
2021-07-21 09:54:17 +02:00
|
|
|
rb.constraints = bottomx;
|
2021-07-21 09:33:24 +02:00
|
|
|
rb.sharedMaterial = bottom;
|
2021-07-20 19:12:51 +02:00
|
|
|
controller.m_JumpForce = controller.m_JumpForce * 0.8f;
|
|
|
|
}
|
2021-07-21 09:33:24 +02:00
|
|
|
sfx.clip = RotateSFX;
|
|
|
|
sfx.Play();
|
2021-07-20 18:23:19 +02:00
|
|
|
}
|
|
|
|
|
2021-07-20 19:12:51 +02:00
|
|
|
|
2021-07-19 11:45:08 +02:00
|
|
|
|
2021-07-19 19:27:02 +02:00
|
|
|
}
|
|
|
|
void FixedUpdate(){
|
2021-07-20 18:52:15 +02:00
|
|
|
controller.Move(horizonatalaxis * runspeed * Time.fixedDeltaTime, jumping);
|
2021-07-19 19:27:02 +02:00
|
|
|
|
2021-07-19 11:45:08 +02:00
|
|
|
}
|
|
|
|
}
|