일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 어플
- php 홈디렉토리 변경방법
- 안드로이드
- 소캣(Socket)
- 아이폰
- 변경된 정보
- 비행기 모드
- tcp네트워크
- 벨팡
- TCP 네트워크 방식의 연결
- 에셋
- 기업의 행포
- End of Darkness
- 나지보 특성
- 컬렉션 프레임
- 명령어
- Collection Framework
- game
- 안드로이드 Application Lifecycle
- 리눅스
- 집 정리
- 자바
- unity
- 아이패드
- 스랄 특성
- tcp
- 히오스
- 게임
- 나지보
- 포트(Port)
- Today
- Total
목록모든 정보 (407)
Do Something IT
일단 확인된 문제는 v. 5.1.0f3. 이하 는 확실히 존재하는 문제 이다 상위 버전에서 수정되었는지 추후더 확인해야 한다. 이를 해결 하기위해서는 두가지 수정 솔루션이 있다. There were two viable options: Use a web server to get the server time and compute the time difference. However this will require the players to be connected to the internet. Use System.DateTime.Now. However, this can be cheated by adjusting the device time https://forum.unity.com/threads/alternat..
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class TweenMaterialColor : MonoBehaviour { public enum ETweenType { Pingpong, Ones } public ETweenType Type; public AnimationCurve Corve; public string TargetColorName; public Color ColorStart = Color.white; public Color ColorEnd = Color.clear; public float Duration = 1.0f; public Action EndAction..
using UnityEngine; using InputInfo; using UniRx; using UniRx.Triggers; public class Player : MonoBehaviour { private GameObject _mainCamera; private ReadOnlyReactiveProperty InputData { get; set; } // Use this for initialization void Start() { var _mainCamera = Camera.main.gameObject; var downStream = (_mainCamera).UpdateAsObservable().Where(_ => Input.GetMouseButtonDown(0)); var upStream = (_ma..