mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-12 11:27:39 +02:00
Trick on the Class: initial setup
hell
This commit is contained in:
8
Assets/Scripts/Games/TrickClass.meta
Normal file
8
Assets/Scripts/Games/TrickClass.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4365eafd06922a34eb4f69c2c020cc75
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
20
Assets/Scripts/Games/TrickClass/TrickClass.cs
Normal file
20
Assets/Scripts/Games/TrickClass/TrickClass.cs
Normal file
@ -0,0 +1,20 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace HeavenStudio.Games
|
||||
{
|
||||
/**
|
||||
mob_Trick
|
||||
**/
|
||||
public class TrickClass : MonoBehaviour
|
||||
{
|
||||
|
||||
public static TrickClass instance;
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
instance = this;
|
||||
}
|
||||
}
|
||||
}
|
11
Assets/Scripts/Games/TrickClass/TrickClass.cs.meta
Normal file
11
Assets/Scripts/Games/TrickClass/TrickClass.cs.meta
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c32cb0e1f34c12c4f9440880fee8ff29
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -461,6 +461,10 @@ namespace HeavenStudio
|
||||
{
|
||||
new Param("type", FanClub.StageAnimations.Reset, "Animation", "Animation to play")
|
||||
}),
|
||||
}),
|
||||
new Minigame("trickClass", "Trick on the Class\n<color=#eb5454>[WIP don't use]</color>", "C0171D", false, false, new List<GameAction>()
|
||||
{
|
||||
|
||||
}),
|
||||
/*new Minigame("spaceDance", "Space Dance", "B888F8", new List<GameAction>()
|
||||
{
|
||||
|
Reference in New Issue
Block a user