This commit is contained in:
CortexCore
2023-12-03 17:35:43 +08:00
parent ba342d6627
commit ba9f4eda80
702 changed files with 162078 additions and 21050 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BITFALL.Props
{
public class Prop_ModifyObject : MonoBehaviour
{
[SerializeField] internal ScriptableObject scriptableObject;
[SerializeField] internal Transform[] originalObjects;
[SerializeField] internal Transform[] modifyObjects;
}
}