Notice
Recent Posts
Recent Comments
Link
목록게임 (2)
거의 알고리즘 일기장
11. 유니티 _ 3D 닷지
게임설명 동작 회전 관련 SCRIPT (회전시킬것을 묶어야됨!) using System.Collections; using System.Collections.Generic; using UnityEngine; public class Rotator : MonoBehaviour { public float rotationSpeed = 60f; float changeTime = 2.0f; float objectTime = 0.0f; void Update() { transform.Rotate(0f, rotationSpeed*Time.deltaTime, 0f); objectTime += Time.deltaTime; if(objectTime >= changeTime) { changeTime = Random.Range(2..
유니티
2020. 5. 12. 04:12