Trick on the Class: object paths

This commit is contained in:
minenice55
2022-04-10 17:37:37 -04:00
parent ef7f7d8952
commit 51c529a16f
37 changed files with 1972 additions and 463 deletions

View File

@ -0,0 +1,34 @@
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()
{
}
}
}