diff options
| author | SmallFox <2806143047@qq.com> | 2026-01-30 23:10:03 +0800 |
|---|---|---|
| committer | SmallFox <2806143047@qq.com> | 2026-01-30 23:10:03 +0800 |
| commit | 28fbde36e76429bfb2bf577d9e3da77db745ef3d (patch) | |
| tree | 03392014566a11be31f8bfe59b3a5416e7ce33a2 /Assets/Scripts/PlayerControl.cs | |
| parent | 87aacebb8431b402d6a18054a81c4542632008d7 (diff) | |
| parent | bdd0c3eee905c5dc6fcf22344f7fdbd4cc3e3a02 (diff) | |
Merge branch 'main' of catilgrass.cn:GameJamTemplate into dev_lys
Diffstat (limited to 'Assets/Scripts/PlayerControl.cs')
| -rw-r--r-- | Assets/Scripts/PlayerControl.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Assets/Scripts/PlayerControl.cs b/Assets/Scripts/PlayerControl.cs new file mode 100644 index 0000000..3ef3dc8 --- /dev/null +++ b/Assets/Scripts/PlayerControl.cs @@ -0,0 +1,8 @@ +using UnityEngine; + +public class PlayerControl : MonoBehaviour +{ + public float movementHorizontal; + public float movementVertical; + public bool grabbing; +} |
