'Unity'에 해당되는 글 185건
- 2022.02.11 유니티 안드로이드 동영상 관련자료
- 2022.02.10 유니티 폴리곤 처리
- 2022.02.08 유니티 pb stl 사용법
- 2022.01.29 DOTween 사용법
- 2022.01.29 유니티 라이팅
- 2022.01.22 유니티 프로젝터
- 2022.01.22 유니티 메시 관련
- 2022.01.17 유니티 아웃라인
2022. 1. 22. 12:04
Unity/C#
중앙값
var position = Vector3.zero;
position.x = mesh.vertices.Average(x => x.x);
position.y = mesh.vertices.Average(x => x.y);
position.z = mesh.vertices.Average(x => x.z);
'Unity > C#' 카테고리의 다른 글
유니티 폴리곤 처리 (0) | 2022.02.10 |
---|---|
유니티 ScriptableObject (0) | 2021.12.16 |
유니티 트랜스 폼 (Transform) (0) | 2021.11.30 |