블로그 이미지
Every unexpected event is a path to learning for you. blueasa

카테고리

분류 전체보기 (2809)
Unity3D (865)
Programming (479)
Server (33)
Unreal (4)
Gamebryo (56)
Tip & Tech (234)
협업 (61)
3DS Max (3)
Game (12)
Utility (140)
Etc (98)
Link (32)
Portfolio (19)
Subject (90)
iOS,OSX (55)
Android (16)
Linux (5)
잉여 프로젝트 (2)
게임이야기 (3)
Memories (20)
Interest (38)
Thinking (38)
한글 (30)
PaperCraft (5)
Animation (408)
Wallpaper (2)
재테크 (18)
Exercise (3)
나만의 맛집 (3)
냥이 (10)
육아 (16)
Total
Today
Yesterday


[링크] http://macnews.tistory.com/4533

반응형
Posted by blueasa
, |


UnityException: Unable to install APK!

Installation failed. See the Console for details.

 

 별다른 로그 없이 위와같은 내용만 표출하고 빌드가 안되는 않는 현상이 발생하여 찾아보니,


 현재 폰에 설치 되어있는 같은 패키지 어플을 삭제하고 다시 시도하니 정상동작하였습니다.


  출처 : http://answers.unity3d.com/questions/815011/unable-to-install-apk.html



출처: http://mbseo.wo.tc/163 [생존본능의 개발이야기]

반응형
Posted by blueasa
, |


[링크] http://travelerstory.tistory.com/128

반응형
Posted by blueasa
, |

I Just Modified UI Label Code 

From
   public string text
   {
      get
      {
         return mText;
      }
      set
      {
         if (string.IsNullOrEmpty(value))
         {
            if (!string.IsNullOrEmpty(mText))
               mText = "";
            hasChanged = true;
         }
         else if (mText != value)
         {
            mText = value;   <=== Here
            hasChanged = true;
         }
      }
   }


To
   public string text
   {
      get
      {
         return mText;
      }
      set
      {
         if (string.IsNullOrEmpty(value))
         {
            if (!string.IsNullOrEmpty(mText))
               mText = "";
            hasChanged = true;
         }
         else if (mText != value)
         {
            mText = value.Replace("\\n", "\n");  <== Here
            hasChanged = true;
         }
      }
   }


I Didn't consider performance :)




[출처] http://www.tasharen.com/forum/index.php?topic=4114.msg20026#msg20026

[참조] http://www.devkorea.co.kr/bbs/board.php?bo_table=m03_qna&wr_id=31752

반응형
Posted by blueasa
, |



[링크] http://specialmylife.tistory.com/entry/Dictionary-value-%EB%B3%80%EA%B2%BD


[링크2] https://westwoodforever.blogspot.kr/2013/07/c-invalidoperationexception-out-of-sync.html

반응형
Posted by blueasa
, |

[Bug] SourceTree for Mac

협업/Git / 2017. 6. 29. 11:38



[출처] 게임코디 Rh님

반응형

'협업 > Git' 카테고리의 다른 글

[펌][SourceTree] 갑자기 실행이 안될때  (0) 2017.10.23
[링크] Pro Git[ebook]  (0) 2017.07.29
[Util] GitKraken  (0) 2017.06.29
Git: Rebase는 언제 어떻게 해야 할까?  (0) 2015.02.23
Git 도구 - 서브모듈  (0) 2015.02.04
Posted by blueasa
, |

[Util] GitKraken

협업/Git / 2017. 6. 29. 11:32


[Link] https://www.gitkraken.com/


반응형
Posted by blueasa
, |

[추천APP] 차이의 놀이

육아 / 2017. 6. 20. 15:39


[링크]

https://www.havitplay.com/


[앱다운로드] 

https://www.havitplay.com/downloads/app?referrer=utm_source%3Dweb_footer%26utm_medium%3Dweb%26utm_term%3Dapp_download%26utm_campaign%3Dapp_download_landing

반응형
Posted by blueasa
, |


[Apple]

https://itunes.apple.com/kr/app/%EB%B2%A0%EC%9D%B4%EB%B9%84%ED%83%80%EC%9E%84-babytime-%EB%AA%A8%EC%9C%A0-%EC%88%98%EC%9C%A0-%EC%88%98%EB%A9%B4-%ED%8C%A8%ED%84%B4-%EA%B8%B0%EB%A1%9D-%EC%95%B1/id1052459780?mt=8


[Google]

https://play.google.com/store/apps/details?id=yducky.application.babytime&hl=ko

반응형
Posted by blueasa
, |

AndroidManifest에 다음 줄을 추가하면

시작하자마자 뜨는 퍼미션 요청을 스킵할 수 있습니다.


<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="true" />



출처: http://minhyeokism.tistory.com/54 [programmer-dominic.kim]

반응형
Posted by blueasa
, |