mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
8d28f3977f
* Lockstep fansodnason * More Lockstep Implemented the new sprites (still needs work). Added new Icon. * More lockstep stuff i have no clue * Animation Tweaking I fiddled around with numbers weeeeeeeeeeeeeeee
24 lines
406 B
C#
24 lines
406 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
using HeavenStudio.Util;
|
|
|
|
namespace HeavenStudio.Games.Scripts_Lockstep
|
|
{
|
|
public class StepSwitcher : PlayerActionObject
|
|
{
|
|
|
|
// Start is called before the first frame update
|
|
void Awake()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|