Closed1

Unity C#で太陽のオブジェクトを動かしたい

Kazuki YonemotoKazuki Yonemoto

素人ながらこのような感じでできた。

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Roundlight : MonoBehaviour
{
    private GameObject obj;
    // Start is called before the first frame update
    void Start()
    {
        //設置されているDirectional Lightを取得する
        obj = GameObject.Find("Directional Light");
    }

    // Update is called once per frame
    void Update()
    {
        // 時間経過毎に回転させる
        obj.transform.Rotate(new Vector3 (0,-12) * Time.deltaTime);
    }
}
このスクラップは2022/01/22にクローズされました