HeavenStudioPlus/Assets/Scripts/Games/TrickClass/MobTrickObj.cs

34 lines
650 B
C#
Raw Normal View History

2022-04-10 21:37:37 +00:00
using System.Collections;
using System.Collections.Generic;
using System;
using UnityEngine;
using NaughtyBezierCurves;
using HeavenStudio.Util;
namespace HeavenStudio.Games.Scripts_TrickClass
{
public class MobTrickObj : PlayerActionObject
{
public bool flyType;
public float startBeat;
bool flying = true;
float flyBeats;
[NonSerialized] public BezierCurve3D curve;
private TrickClass game;
private void Awake()
{
game = TrickClass.instance;
}
// Update is called once per frame
void Update()
{
}
}
}