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

카테고리

분류 전체보기 (2737)
Unity3D (817)
Programming (474)
Server (33)
Unreal (4)
Gamebryo (56)
Tip & Tech (228)
협업 (58)
3DS Max (3)
Game (12)
Utility (136)
Etc (96)
Link (32)
Portfolio (19)
Subject (90)
iOS,OSX (53)
Android (14)
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
04-20 00:00

Hidden Assets

During the import process, Unity ignores the following files and folders in the Assets folder (or a sub-folder within it):

  • Hidden folders.
  • Files and folders which start with ‘.’.
  • Files and folders which end with ‘~’.
  • Files and folders named cvs.
  • Files with the extension .tmp.

This prevents importing special and temporary files created by the operating system or other applications.

 

[출처] https://forum.unity.com/threads/exclude-files-or-folders-from-importing.48090/

 

Exclude files or folders from importing

Is there any way to exclude psd, jpg, max file (or whole folder) in Assets folder from being imported to Unity as texture or model? I keep my...

forum.unity.com

 

[참조] https://docs.unity3d.com/Manual/SpecialFolders.html?_gl=1*f8onwh*_ga*MTUzMjkzMTA0MC4xNjIyNzEzNDM4*_ga_1S78EFL1W5*MTYyNDg3MTc4MS41LjEuMTYyNDg3MjE4OC4xMA..&_ga=2.190280226.821848530.1624841162-1532931040.1622713438 

 

Unity - Manual: Special folder names

Reusing assets between projects How do you use documentation throughout your workflow? Share your experience with us by taking this survey. Special folder names You can usually choose any name you like for the folders you create to organise your Unity proj

docs.unity3d.com

 

반응형
Posted by blueasa
, |

[링크] https://developstudy.tistory.com/74

 

C# 자주 쓰는 Collection 집계 함수

자주 쓰는 컬렉션 집계함수들을 모아서 간단하게 사용법을 정리해보았다. 아래에서 사용한 함수는 아래와 같다. 0. Foreach 1. FindAll(찾기) 2. Except(차집합) 3. ToDictionary(사전화) 4. Select(골라내기) 5...

developstudy.tistory.com

 

반응형
Posted by blueasa
, |

[링크] https://devstarsj.github.io/development/2016/05/12/CSharp.AspnetCore.WebSocket/

 

WebSockets in .NET Core

.NET Core (현재는 ASP.NET 5)로 간단한 Web Socket을 구현하는 예제코드와 설명입니다.

devstarsj.github.io

 

반응형
Posted by blueasa
, |

[링크] https://developstudy.tistory.com/88

 

C# 게임 서버 (.net core) 장단점

C# 콘솔 서버를 실무에서 사용해보면서 느껴진 주관적인 장점과 단점을 정리해보았다. 장점 1. 메모리 관리 수월 : C++은 잘못된 메모리를 접근하고 쓰는 순간 망한다. 심지어 스마트 포인터를 사

developstudy.tistory.com

 

반응형
Posted by blueasa
, |

[링크] https://brunch.co.kr/@chris-song/16

 

.NET Core 게임서버 개발 1편 (Win)

ASP.NET Core로 30분만에 게임서버를! | 맥 버전 가이드는 아래 글에서 확인하세요 ^^ https://brunch.co.kr/@chris-song/15 제가 유니티 책을 쓰면서 가장 관심이 많았던 주제는 바로, "어떻게 하면 유니티 개발

brunch.co.kr

 

반응형
Posted by blueasa
, |

최근 잘쓰던 Google Chat이 갑자기 실행이 안돼서 검색해봐도 다른 이슈같고 해결방법을 못찾다가 어찌어찌해서 해결을 했다.

PC와 노트북 두 곳에서 차례로 문제가 생기면서 알게 된 건, Google Chat 실행 문제가 생기는 Chrome이 64bit가 아닌 32bit로 설치돼 있다는 거였다.

32bit의 Chrome을 지우고 64bit Chrome으로 새로 설치하니 Google Chat(chat.google.com)도 다시 잘 실행 된다.

 

[결론] 

Google Chat이 Chrome(32bit)에서 제대로 지원을 안하거나 버그인 것 같다.

Chrome(64bit)을 설치하자.

반응형
Posted by blueasa
, |