mirror of
https://github.com/BlackMATov/unity-iso-tools.git
synced 2025-12-15 01:12:05 +07:00
16 lines
237 B
C#
16 lines
237 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
[ExecuteInEditMode]
|
|
public class IsoObject : MonoBehaviour {
|
|
|
|
public Vector3 Size = Vector3.one;
|
|
public Vector3 Position = Vector3.zero;
|
|
|
|
void Start () {
|
|
}
|
|
|
|
void Update () {
|
|
}
|
|
}
|