본문 바로가기
반응형

Works104

C# 암호화 변수 암호화 코드 using System.IO; using System.Security.Cryptography; public static class CryptoFunc { private static byte[] _key = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16 }; private static byte[] _iv = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16 }; private static Aes _aes = null; private static v.. 2020. 9. 23.
[Unity] Firebase Crashlytics Crash Repoting Solution for iOS, Android and Unity firebase.google.com/docs/crashlytics?hl=en Firebase Crashlytics iOS, Android, Unity를 위한 강력한 오류 보고 솔루션으로 앱 문제에 대한 명확하고 활용 가능한 분석 정보를 확인해 보세요. firebase.google.com firebase.google.com/docs/crashlytics/test-implementation?hl=en&platform=unity#objective-c Crashlytics 구현 테스트 | Firebase iOS Android Unity 비정상 종료로 구현 테스트하기 비정상 종료가 발생할 때까지 기다리지 않아도 Crashl.. 2020. 9. 22.
[Unity] PlayableGraph Visualizer PlayableGraph Visualizer Setup Unity Editor > Windows > Package Manager > Add package from git URL Git URL: https://github.com/Unity-Technologies/graph-visualizer.git Package Manager > In Project (package scope drop-down menu) PlayableGraph Viaulizer 설치 확인 PlayableGraph Visualizer USE Unity Editor > Window > Analysis > PlayableGraph Visualizer 각 State 는 Playable 또는 Node 라고 호칭 Node 오른쪽 선이 Input, .. 2020. 9. 22.
[Unity] Playables API Playables API Unity - Manual: Playables API Playables API The Playables API provides a way to create tools, effects or other gameplay mechanisms by organizing and evaluating data sources in a tree-like structure known as the PlayableGraph. The PlayableGraph allows you to mix, blend, and modify multi docs.unity3d.com Unity 에서 Timeline 을 만드는데 사용 PlayableGraph Visualizer 와 함께 사용하면 시각적으로 디버깅 가능 Play.. 2020. 9. 22.
반응형