Some things

This commit is contained in:
Gerard Gascón 2023-08-19 23:55:03 +02:00
parent 6ba30e430e
commit e4cc23e7f0
119 changed files with 70085 additions and 682 deletions

View file

@ -0,0 +1,16 @@
using UnityEngine;
namespace Level8 {
public class PlayerFollower8 : MonoBehaviour {
public void SetPosition(Vector3 position, bool grounded) {
if (grounded) {
transform.position = position;
return;
}
Vector3 pos = transform.position;
pos.x = position.x;
transform.position = pos;
}
}
}