123456789101112131415161718 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class MapSetter : MonoBehaviour {
- public Vector3 Offset;
- public Quaternion Roatation;
- public Vector3 Scale;
- // Start is called before the first frame update
- void Start() {
- transform.localPosition = Offset;
- transform.localRotation = Roatation;
- transform.localScale = Scale;
- }
- }
|