Firstborn/Assets/Scripts/ModItem.cs
Schaken-Mods 774d18a99d 5/18/2023 Update
made most of the game Moddable. There is an in editor tool to make the mods and set them all up, and im making an external tool that will show your mods, lets you edit any information and it will pack it up and upload it. currently working on the uploading. Next I will make the game able to download and install. - Fuck Nexus.
2023-05-18 20:28:45 -05:00

27 lines
506 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ModItem : MonoBehaviour
{
[SerializeField] public RPGCreationKit.CellsSystem.Cell LoadInCell;
[Header("\tTransform Information")]
[SerializeField] public Vector3 Pos;
[SerializeField] public Vector3 Rot;
// Start is called before the first frame update
void Start() {
}
// Update is called once per frame
void Update() {
}
[ContextMenu("Grab Transform")]
public void GrabTransform() {
}
}