일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- TCP 네트워크 방식의 연결
- game
- 에셋
- 게임
- 안드로이드
- 아이폰
- 명령어
- 집 정리
- 소캣(Socket)
- 포트(Port)
- 어플
- 리눅스
- tcp네트워크
- 나지보
- 변경된 정보
- unity
- 스랄 특성
- 아이패드
- 비행기 모드
- 컬렉션 프레임
- 나지보 특성
- php 홈디렉토리 변경방법
- Collection Framework
- tcp
- End of Darkness
- 벨팡
- 기업의 행포
- 히오스
- 자바
- 안드로이드 Application Lifecycle
- 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..