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

카테고리

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

[개요]

CustomToolbar는 마음에 드는데 추가하고 싶은 부분이 있어서 조금 수정함.

- FPS / Time 슬라이더 크기 줄이기

- FPS / Time 'Reset' 버튼 추가

 

 

[파일]

CustomToolbar_v2.8.1(custom).zip
0.07MB

 

 

[스토어 링크] https://assetstore.unity.com/packages/tools/utilities/customtoolbar-327041

 

CustomToolbar | 유틸리티 도구 | Unity Asset Store

Use the CustomToolbar from Opal on your next project. Find this utility tool & more on the Unity Asset Store.

assetstore.unity.com

 

반응형
Posted by blueasa
, |

NiloToon 같이 만들어 보고 싶어서 NiloToon 공개 소스를 참조한 URPSimpleGenshin Shader를 좀 개조해서 기능 추가 해봄.

 

// Based on SimpleGenshinFacial shader
// Simplified NiloToon Shader for Unity URP

/*
CustomURPToon Shader - A simplified toon shader based on SimpleGenshinFacial
Features:
- Basic toon lighting with cel shading
- Rim lighting
- Outline rendering
- Face shadow mapping support
- Mobile optimized
*/

 

 

[파일]

CustomURPToon.zip
0.51MB

 

 

[참조] https://github.com/NoiRC256/URPSimpleGenshinShaders

 

GitHub - NoiRC256/URPSimpleGenshinShaders: A simple Genshin Impact facial shader for Unity URP, based on NiloCat shader example

A simple Genshin Impact facial shader for Unity URP, based on NiloCat shader example - NoiRC256/URPSimpleGenshinShaders

github.com

 

반응형
Posted by blueasa
, |
List<cTag> week = new List<cTag>();
// add some stuff to the list
// now sort
week.Sort(delegate(cTag c1, cTag c2) { return c1.date.CompareTo(c2.age); });



참조 : http://stackoverflow.com/questions/3163922/sort-a-custom-class-listt

반응형
Posted by blueasa
, |

Transform Custom Editor

Unity3D / 2012. 10. 15. 15:26

링크 : http://wiki.unity3d.com/index.php?title=TransformInspector


위 링크를 보면 Transform Custom Editor 기본 소스가 있다.


스크립트를 저장해서 Assets/Editor 안에 넣으면 준비 완료..


이제 고치면..되는데..


삽질이 필요한 시기군..

반응형

'Unity3D' 카테고리의 다른 글

에셋 서버 Scene Merge 관련..  (0) 2012.10.19
유니티 관련  (0) 2012.10.17
Gizmos로 카메라 프러스텀 보이게 하기  (0) 2012.10.15
유니티에 툴바 만들기..  (0) 2012.10.15
유니티에서 툴 만들기  (0) 2012.10.12
Posted by blueasa
, |