250x250
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 | 31 |
Tags
- 터치디자이너 인터페이스
- 터치디자이너
- 터치디자이너 timeline
- TouchDesigner
- touchdesinger
- 터치디자이너 오퍼레이터
- touchdesigner GPU
- 파이썬
- 터치디자이너 강의
- 터치디자이너 튜토리얼
- displace
- ableton live 10
- TDableton
- particleGPU
- 터치디자이너 python
- 터치디자이너 참조
- 터치디자이너 Instancing
- 파이썬 if
- 파이썬reference
- 터치디자이너 함수
- 터치디자이너 파이썬
- touchdesigner displace
- touchdesigner particle
- 터치디자이너 replicator
- 터치디자이너 reference
- 터치디자이너 클론
- 터치디자이너 에이블톤
- 터치디자이너 if
- 터치디자이너 list
- 터치디자이너 interface
Archives
- Today
- Total
caLAB
screenToWorldPoint 마우스 컨트롤 위치로 gameobject움직이기 본문
728x90
카메라 모드를 orthographic으로 해두어야 된다.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class mousePosInteractor : MonoBehaviour
{
private Vector2 cursorPos;
void Update()
{
transform.position = new Vector3(cursorPos.x, cursorPos.y, transform.position.z);
}
void OnGUI()
{
Vector3 p = new Vector3();
Camera c = Camera.main;
Event e = Event.current;
Vector2 mousePos = new Vector2();
mousePos.x = e.mousePosition.x;
mousePos.y = c.pixelHeight - e.mousePosition.y;
p = c.ScreenToWorldPoint(new Vector3(mousePos.x, mousePos.y, c.nearClipPlane + 14));
cursorPos.x = p.x;
cursorPos.y = p.y;
}
}
728x90
반응형
'Unity > 유니티 개발' 카테고리의 다른 글
pinch Interaction 시뮬레이션(zoom, rotation) (0) | 2021.08.25 |
---|---|
유니티 깃헙 연동해서 팀프로젝트 하기 feat. markDown글쓰기 (0) | 2021.08.24 |
sceneLoader (0) | 2021.03.10 |
유니티 리얼센스 Nuitrack 스켈레톤 프로젝트 (0) | 2021.02.01 |
[realsense D435 개발일지] 기본 세팅. (0) | 2020.12.28 |
Comments