Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- AR
- 에셋번들
- Depth camera
- 반응형레이아웃
- apk
- 랜더스트리밍
- 유니티
- muilt controller
- 역직렬화 오류
- untiy
- unityhub
- RenderStreaming
- 듀얼쇼크4
- 구글플레이스토어
- webview
- 커스텀쉐이더
- web3D
- WebGL
- Environment Reflections
- Unity
- AssetBundle
- TextMeshPro
- Unity VisualStudio
- TextMeshPro 한글
- Specular Highlights
- kinect v2
- android app bundle
- Android
- DS4
- Rewired
Archives
- Today
- Total
기억저장고
[Unity]카메라 360 회전 시, 부드럽게(관성)회전 방법 본문
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ObjectRotation : MonoBehaviour
{
public float rotationSpeed = 15;//회전속도
public float smoothness = 5;//관성 값
private Quaternion targetRotation = Quaternion.identity;
void Update()
{
//회전
if (Input.GetMouseButton(0))
{
Quaternion rot = transform.rotation;
rot *= Quaternion.Euler(new Vector3(Input.GetAxis("Mouse Y") * rotationSpeed, -Input.GetAxis("Mouse X") * rotationSpeed, 0));
float x = rot.eulerAngles.x;
float y = rot.eulerAngles.y;
targetRotation = Quaternion.Euler(x, y, 0);
}
transform.rotation = Quaternion.Lerp(transform.rotation, targetRotation, Time.deltaTime * smoothness);
}
}
'Unity' 카테고리의 다른 글
Target API 올렸을때 나온 모든 오류 (0) | 2023.10.13 |
---|---|
[Unity] 타켓위치 기준으로 카메라Zoom In/Out 하는법 (0) | 2023.09.26 |
[Unity] 텍스트 길이에 맞춰 UI 사이즈 조절하는법 (0) | 2023.09.15 |
유니티 카메라 360 회전 (0) | 2023.09.07 |
[untiy] FontAssetCreator없이 TextMeshPro 한글폰트 만들기 (0) | 2023.06.29 |
Comments