반응형
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
- 아이패드
- 포트(Port)
- 명령어
- 스랄 특성
- 집 정리
- 안드로이드 Application Lifecycle
- 안드로이드
- tcp네트워크
- 비행기 모드
- 나지보 특성
- 리눅스
- 기업의 행포
- tcp
- End of Darkness
- game
- 히오스
- php 홈디렉토리 변경방법
- TCP 네트워크 방식의 연결
- 벨팡
- unity
- 자바
- 게임
- 소캣(Socket)
- 어플
- Collection Framework
- 변경된 정보
- 아이폰
- 에셋
- 나지보
- 컬렉션 프레임
Archives
- Today
- Total
Do Something IT
[유니티 C#]TimeScale 과 독립적으로 작동하는 ParticleSystem 본문
반응형
using UnityEngine; using System.Collections; public class ParticaleAnimator : MonoBehaviour { private void Awake() { particle = GetComponent(); } // Use this for initialization void Start() { lastTime = Time.realtimeSinceStartup; } // Update is called once per frame void Update() { float deltaTime = Time.realtimeSinceStartup - (float)lastTime; particle.Simulate(deltaTime, true, false); //last must be false!! lastTime = Time.realtimeSinceStartup; } private double lastTime; private ParticleSystem particle; }
반응형
'Unity3D' 카테고리의 다른 글
대규모 프로젝트 개발 필요한것들 (0) | 2014.12.29 |
---|---|
[Unity3D] Editor Tool 프리팹 생성 하기 및 순차 정열 IComparable (0) | 2014.12.29 |
[유니티 c#] TimeScale 과 독립적으로 작동하는 Animation (0) | 2014.10.01 |
Masking textures using shaders NGUI (0) | 2014.07.07 |
FlyingMover (0) | 2014.04.28 |
Comments