Unity
-
FACEBOOK과 UNITY - 02 FacebookManager 만들기Unity/Facebook 2020. 6. 10. 07:21
// 링크 공유 함수, 일반 링크처럼 올라간다. public void shareLink() { FB.ShareLink(new System.Uri(shareContentURL), shareTitle, shareDescription, new System.Uri(sharePictureURL), callback: shareCallback); } // 피드 공유 함수. 크게 다르지 않다. (링크만 하나 덜렁 올라간다.) public void shareFeed() { FB.FeedShare("", new System.Uri(shareContentURL), shareTitle, "LINK CAPTION", shareDescription, new System.Uri(sharePictureURL), "", callbac..
-
[Memo] 유니티 코기(Corgi) 엔진 소개Unity/Corgi Engine 2020. 5. 26. 11:04
공식 홈페이지 https://corgi-engine.moremountains.com/ Corgi Engine - the best 2D+2.5D platformer solution for Unity, by More Mountains The Corgi Engine is the best Unity 2D+2.5D Platformer kit. Get it and create your own 2D game! corgi-engine.moremountains.com 공식 가이드 문서 https://corgi-engine-docs.moremountains.com/ Introduction to the Corgi Engine | Corgi Engine Documentation Welcome to the Corgi Engin..
-
[Tip] Logcat 과 Unity EditorUnity/DEBUG 2020. 5. 19. 22:40
유니티 에디터 상에서 Logcat을 확인 하는 방법이 있다. https://docs.unity3d.com/Packages/com.unity.mobile.android-logcat@1.2/manual/index.html Overview | Android Logcat | 1.2.0-preview Overview Android Logcat Package is a utility for displaying log messages coming from an Android device in the Unity Editor. Read more about Android Logcat Document. Requirements Compatible with Unity 2019.1 or above. Requires Unity's ..
-
[Tip] 화면 해상도 & 가로 세로 비율 조정 02Unity/UI 2020. 5. 17. 10:22
1편에 이은 후속이다. 1편에서 언급한 실험 결과인 셈. https://devsquare.tistory.com/11 [Tip] 화면 해상도 & 가로 세로 비율 조정 01 사실 Resolution과 AspectRatio를 고정하는 것은 그리 좋은 방법이 아니다. 가장 좋은 방법은 있는 그대로의 단말기 환경에 대응을 하는 것이다. 그럼에도 불구하고 몇몇 경우에 Resolution과 AspectRatio를 � devsquare.tistory.com 아래는 나름대로 정리한 것이다. 물론 개발하는 개개인마다 생각하는 정답은 다르기 때문에 이것이 100% 정답이라고 할 수는 없겠다. 하지만 나처럼 "찌그러진 원이나 늘어진 화면"을 싫어하고, "원 빌드 모든 단말기 지원"를 궁극적으로 추구한다면 아래와 같은 방법이 ..
-
[Tip] 그래픽 성능 테스트 툴 - GRAPHYUnity/DEBUG 2020. 5. 17. 07:56
https://assetstore.unity.com/packages/tools/gui/graphy-ultimate-fps-counter-stats-monitor-debugger-105778 [Graphy] - Ultimate FPS Counter - Stats Monitor & Debugger | GUI 도구 | Unity Asset Store Use the [Graphy] - Ultimate FPS Counter - Stats Monitor & Debugger from Tayx on your next project. Find this GUI tool & more on the Unity Asset Store. assetstore.unity.com 무료 애셋 중에서 상당히 강력한 도구이다. 사실 빌드 후에..
-
[Tip] 화면 해상도 & 가로 세로 비율 조정 01Unity/UI 2020. 5. 17. 01:07
https://devsquare.tistory.com/13 [Tip] 화면 해상도 & 가로 세로 비율 조정 02 1편에 이은 후속이다. 1편에서 언급한 실험 결과인 셈. https://devsquare.tistory.com/11 [Tip] 화면 해상도 & 가로 세로 비율 조정 01 사실 Resolution과 AspectRatio를 고정하는 것은 그리 좋은 방법이 아니다... devsquare.tistory.com 급하신 분은 결론부에 해당되는 2편을 보시는 걸 추천합니다. 사실 Resolution과 AspectRatio를 고정하는 것은 그리 좋은 방법이 아니다. 가장 좋은 방법은 있는 그대로의 단말기 환경에 대응을 하는 것이다. 그럼에도 불구하고 몇몇 경우에 Resolution과 AspectRatio를 ..
-
[Tip] ScrollRect 자동 정렬 (Dynamic ordering)Unity/UI 2020. 5. 15. 05:19
이게 알고 나면 정말 간단한건데 까먹고 나면 난감하기 그지 없다. 검색하면 C# 코딩으로 해결하는 ...양형들 때문에 눈물이 주르륵... - Horizontal/Vertical Layout Group 자식 노드들의 위치를 레이아웃 잡아서 정렬한다. - Content Size Fitter Content 영역의 크기를 조정한다. 보통 이거 두개면 스크롤뷰를 완벽하게 구현할 수 있다. 자세한 내용은 Unity UI 레퍼런스 문서를 참조하면 된다. https://docs.unity3d.com/Packages/com.unity.ugui@1.0/manual/comp-UIAutoLayout.html Auto Layout | Unity UI | 1.0.0 Auto Layout The auto layout system ..