전체 글471 블랜더 시민강좌 4일차 2023. 7. 13. 블랜더 시민강좌 3일차 메테리얼, 택스처 적용 2023. 7. 12. 블랜더 시민강좌 2일 돌돌 말린 종이물병, 물컵슬라임 치즈1치즈2 2023. 7. 11. 블랜더 시민강좌 1일 차 스마트폰 1스마트폰1의자충전기테이블, 닭 2023. 7. 11. 운수룰렛 스와이프로 바꾸기 클릭해서 돌리기 using System.Collections; using System.Collections.Generic; using UnityEngine; public class RouletteController : MonoBehaviour { float rotSpeed =0; //회전 속도 // Start is called before the first frame update void Start() { // 프레임레이트를 60으로 고정한다. Application.targetFrameRate = 60; } // Update is called once per frame void Update() { // 클릭하면 회전속도를 설정함 if (Input.GetMouseButtonDown(0)){ this.rot.. 2023. 7. 5. 카메라 컨트롤 using System.Collections; using System.Collections.Generic; using UnityEngine; public class SempleCamera : MonoBehaviour { [SerializeField] Transform followTarget; [SerializeField] float distance = 5; float rotationY; private void Update() { // 회전 카메랑와의 거리 transform.position = followTarget.position - Quaternion.Euler(0, 45, 0) * new Vector3(0, 0, distance); } } 카메라와 플레이어 사이의 거리 , 각도 지정하기 using S.. 2023. 7. 5. 이전 1 ··· 73 74 75 76 77 78 79 다음