반응형
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
- tcp
- 비행기 모드
- 변경된 정보
- 게임
- 명령어
- 안드로이드 Application Lifecycle
- 어플
- 기업의 행포
- 자바
- 스랄 특성
- 집 정리
- 벨팡
- 안드로이드
- 리눅스
- TCP 네트워크 방식의 연결
- 히오스
- 에셋
- End of Darkness
- Collection Framework
- 컬렉션 프레임
- 소캣(Socket)
- php 홈디렉토리 변경방법
- 나지보 특성
- 나지보
- unity
- tcp네트워크
- 포트(Port)
- 아이폰
- 아이패드
- game
Archives
- Today
- Total
Do Something IT
유니티 Ngui 체팅창 bbcord 이벤트 받기 본문
반응형
//============================================================== void OnClick() { if(m_cmptLabel == null) return; Parse(m_cmptLabel.GetUrlAtPosition(UICamera.lastHit.point)); } //============================================================== void Parse(string _strFormat) { if(string.IsNullOrEmpty(_strFormat)) return; string[] listStrValue = _strFormat.Split(listSeparatingString, System.StringSplitOptions.RemoveEmptyEntries); if(listStrValue == null || listStrValue.Length != 2) return; int nFishID = csCommon.NONE; if(int.TryParse(listStrValue[0], out nFishID)) { float fFishSize = 0; if(float.TryParse(listStrValue[1], out fFishSize)) ShowFishPoptip(nFishID, fFishSize); } } //============================================================== void ShowFishPoptip(int _nFishID, float _fFishSize, csCommon.STAGE_DIFFICULTY_TYPE _eStageDifficulty = csCommon.STAGE_DIFFICULTY_TYPE.Amateur) { csFishPoptip2.Param param = new csFishPoptip2.Param(); param.FishNID = _nFishID; param.FishSize = _fFishSize; param.stageDifficult = csCommon.STAGE_DIFFICULTY_TYPE.Amateur; csPoptipManager.Instance.Push(PoptipType.FishPoptip2, 0, 0, param); }
반응형
'Unity3D' 카테고리의 다른 글
UniRx Mouse Drag (0) | 2018.11.15 |
---|---|
[Unity] Multiple Camera One RenderTexture Capture (여러대 카메라 한장으로 캡쳐하기) (0) | 2018.03.08 |
[unity]Ngui Shader wants normals, but the mesh Mesh doesn't have them (0) | 2017.11.27 |
자바 스크립트에서 Csv unicode관련 문제 해결 방안 (0) | 2017.11.22 |
유니티 에디터 문자 암호화 복호화 (0) | 2017.11.01 |
Comments