반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 아이폰
- 명령어
- 스랄 특성
- 컬렉션 프레임
- 에셋
- 변경된 정보
- 리눅스
- 안드로이드
- 벨팡
- 나지보 특성
- 어플
- game
- 아이패드
- php 홈디렉토리 변경방법
- 자바
- 안드로이드 Application Lifecycle
- 히오스
- End of Darkness
- 나지보
- Collection Framework
- 집 정리
- 소캣(Socket)
- TCP 네트워크 방식의 연결
- 포트(Port)
- 기업의 행포
- unity
- 비행기 모드
- tcp네트워크
- tcp
- 게임
Archives
- Today
- Total
Do Something IT
FlyingMover 본문
반응형
public class FlyingMover : MonoBehaviour { public float m_Speed = 5.0f; public float m_Height = 3.0f; public float m_ForwardMoveSpeed =0.0f; float m_Value = 0.0f; float m_YSin = 0.0f; Transform m_Transform; void Start() { m_Speed *= 0.001f; m_Height *= 0.1f; m_ForwardMoveSpeed *= 0.0001f; m_Transform = transform; } void Update() { CharacterUpdateSin(); } void CharacterUpdateSin() { m_Value += m_Speed; m_YSin = (float)Mathf.Sin(m_Value) * m_Height; m_Transform.position = new Vector3(m_Transform.position.x + m_ForwardMoveSpeed, m_YSin, 0); } }
반응형
'Unity3D' 카테고리의 다른 글
[유니티 c#] TimeScale 과 독립적으로 작동하는 Animation (0) | 2014.10.01 |
---|---|
Masking textures using shaders NGUI (0) | 2014.07.07 |
ScriptableObject 에 데이터가 저장이 제대로 되지 않는 경우 (0) | 2014.04.11 |
[유니티]Coroutine (0) | 2014.03.17 |
NGUI에서 Depth설정. (0) | 2013.12.23 |
Comments