4 Commits

Author SHA1 Message Date
jlink 9c1ac2c040 s 2026-01-23 18:39:33 +01:00
jlink 2668c0774e sounds 2026-01-23 18:38:33 +01:00
jlink 2d93071bfc Sounds 2026-01-23 18:38:17 +01:00
jlink 521c86dbd4 Slide and Glide 2026-01-23 18:36:25 +01:00
20 changed files with 62 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8ecf27f8ef94e904981b6ec7f5363702
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
+8
View File
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 140426efa0ba27942bd569222ed3a9f4
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Binary file not shown.
Binary file not shown.
+8
View File
@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4b37e6f7170b25c4db6a0c78dfa46e57
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+4 -2
View File
@@ -423,7 +423,7 @@ Transform:
m_GameObject: {fileID: 319279591}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -12.2, y: 1.51404, z: 15.37}
m_LocalPosition: {x: 9.4, y: 1.51404, z: 15.37}
m_LocalScale: {x: 2, y: 2, z: 2}
m_ConstrainProportionsScale: 1
m_Children: []
@@ -1023,9 +1023,11 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 9b9bab48a629093449f53dc5ea63d752, type: 3}
m_Name:
m_EditorClassIdentifier: Assembly-CSharp::PlayerMove
basespeed: 8
speed: 8
rb: {fileID: 0}
speedincrease: 0.05
StartPos: {x: -15.5, y: 1.23, z: 12.73}
slide: 0.2
--- !u!1 &1262927943
GameObject:
m_ObjectHideFlags: 0
+34 -5
View File
@@ -1,14 +1,21 @@
using System;
using System.Collections;
using UnityEngine;
public class PlayerMove : MonoBehaviour
{
[SerializeField] private float basespeed;
[SerializeField] private float speed;
[SerializeField] private Rigidbody rb;
[SerializeField] private float speedincrease;
private Rigidbody rb;
[SerializeField] private Vector3 StartPos;
[SerializeField] private float slide;
Vector3 moveDirection;
bool vertical;
bool horizontal;
private void Start()
{
rb = GetComponent<Rigidbody>();
@@ -21,26 +28,38 @@ public class PlayerMove : MonoBehaviour
horizontalInput = Mathf.Round(horizontalInput);
verticalInput = Mathf.Round(verticalInput);
Vector3 moveDirection;
if (horizontalInput != 0 && horizontal == true)
{
transform.rotation = Quaternion.Euler(0f, 0f, 90f);
vertical = false;
moveDirection = new Vector3(horizontalInput,0, 0);
moveDirection.Normalize();
if (!vertical)
{
speed += speedincrease;
}
}
else if (verticalInput != 0 && vertical == true)
{
transform.rotation = Quaternion.Euler(90f, 0f, 0f);
horizontal = false;
moveDirection = new Vector3(0, 0, verticalInput);
moveDirection.Normalize();
if (!horizontal)
{
speed += speedincrease;
}
}
else
{
moveDirection = new Vector3(0, 0, 0);
horizontal = true;
vertical = true;
StartCoroutine(Slide(slide));
transform.rotation = Quaternion.Euler(0f, 0f, 0f);
}
@@ -52,4 +71,14 @@ public class PlayerMove : MonoBehaviour
{
this.transform.position = StartPos;
}
IEnumerator Slide(float delay)
{
yield return new WaitForSeconds(delay);
moveDirection = new Vector3(0, 0, 0);
horizontal = true;
vertical = true;
speed = basespeed;
}
}