본문 바로가기

All66

[C#] internal 한정자 https://docs.microsoft.com/ko-kr/dotnet/csharp/language-reference/keywords/internal internal - C# 참조 internal(C# 참조) 아티클 05/10/2022 읽는 데 3분 걸림 기여자 18명 이 문서의 내용 --> internal 키워드는 형식 및 형식 멤버에 대한 액세스 한정자입니다. 이 페이지에서는 internal 액세스를 설명합니다. in docs.microsoft.com https://m.cafe.daum.net/csharp-novice/5ijJ/65 4.10 internal과 protected internal접근자 이제까지는 클래스 멤버의 접근 권한을 제어하기 위해서 public, protected, private 이.. 2022. 6. 6.
[Unity] 어드레서블, 에셋 번들 관련 참고 자료 모음 https://www.youtube.com/watch?v=Z9LrkQUDzJw https://www.youtube.com/watch?v=Lx61ZEKEvnQ&list=PLYpo8Wc5kpUrl4FdPzSH32Focot7V0IBI&index=2 https://www.youtube.com/watch?v=ByQAii2x5mI https://ssabi.tistory.com/12 [Unity3D] 에셋번들(AssetBundle) 빌드 에셋번들(AssetBundle) 에셋번들은 에셋(모델, 텍스처, 프리팹, 오디오 클립, 씬 등)의 묶음을 의미합니다. 에셋번들을 이용하면 프로그램 실행중에 동적으로 에셋을 로드할 수 있습니다. 에셋번들 ssabi.tistory.com https://blog.unity.com/kr/t.. 2022. 6. 6.
[C#] 레퍼런스 타입에 ref를 사용하는 경우가 있나? https://www.csharpstudy.com/Mistake/Article/5 레퍼런스 타입에 ref 를 사용하는 경우 - C# 프로그래밍 배우기 (Learn C# Programming) 레퍼런스 타입에 ref 를 사용하는 경우 [제목] 레퍼런스 타입에 ref 를 사용하는 경우 C# 키워드인 ref는 해당 Type 객체가 호출되는 메서드에서 변경될 수 있다는 의미한다. Value 타입의 객체의 경우 www.csharpstudy.com 요약하면 참조 타입 객체에 ref를 붙이는 이유는 ref 파라미터로 넘긴 객체를 새로 할당하거나 하기 위함인 듯 음... 이런 일을 할 일이 있나? 2022. 6. 2.
[Unity] UnityEngine.Object의 null 체크 https://gist.github.com/20chan/d8def3eb18ae98235decc722ed931ad1 유니티 직렬화 방식과 null 사용의 개같음과 버그 유니티 직렬화 방식과 null 사용의 개같음과 버그. GitHub Gist: instantly share code, notes, and snippets. gist.github.com 매운 맛 자료 https://ansohxxn.github.io/unitydocs/fakenull/ Unity C# > 유니티 오브젝트의 fake null 🚀 Destroy ansohxxn.github.io 순한 맛 자료 컴포넌트 하위 클래스의 변수를 public으로 하거나, SerializeField 속성을 부여하면, 인스펙터에 노출되는데, 이 때 해당 변수 초.. 2022. 6. 1.