39 lines
777 B
C#
39 lines
777 B
C#
using UnityEngine;
|
|
|
|
namespace AibisDream.Test
|
|
{
|
|
public class BlockPuzzleTest : MonoBehaviour
|
|
{
|
|
|
|
|
|
void Start()
|
|
{
|
|
Debug.LogWarning("BlockPuzzleTest 运行中");
|
|
}
|
|
|
|
public void InitBlockPuzzle()
|
|
{
|
|
BlockPuzzleYarnCommand.InitBlockPuzzle("Game2");
|
|
}
|
|
|
|
public void UnlockBlockPuzzle()
|
|
{
|
|
BlockPuzzleYarnCommand.UnlockSystem();
|
|
}
|
|
|
|
public void LoadShapeRack()
|
|
{
|
|
BlockPuzzleYarnCommand.LoadShapeRack();
|
|
}
|
|
|
|
public void Open()
|
|
{
|
|
BlockPuzzleYarnCommand.PlayShapeAnimation("Open");
|
|
}
|
|
|
|
public void Close()
|
|
{
|
|
BlockPuzzleYarnCommand.PlayShapeAnimation("Close");
|
|
}
|
|
}
|
|
} |