백지부터 시작하는 이세계 코딩 생활

Sorting Layer 본문

백지부터 시작하는 이세계 유니티 생활 since 2020

Sorting Layer

조아덕 2020. 12. 24. 14:15
Sprite Renderer

> Additional Settings
>> Sorting Layer

랜더링 순서를 정의할 때 사용한다. position의 Z축 값을 변경하여 조정할 수도 있지만
그룹으로 만들어서 처리하면 개별적으로 조정하는 것 보다 더 수월하게 이미지 배치를 처리할 수 있다.

"SortingLayer allows you to set the render order of multiple sprites easily. There is always a default SortingLayer named "Default" which all sprites are added to initially. Added more SortingLayers to easily control the order of rendering of groups of sprites. Layers can be ordered before or after the default layer." -Unity


 

 

 

 


Ref.

docs.unity3d.com/ScriptReference/SortingLayer.html

 

Unity - Scripting API: SortingLayer

Description SortingLayer allows you to set the render order of multiple sprites easily. There is always a default SortingLayer named "Default" which all sprites are added to initially. Added more SortingLayers to easily control the order of rendering of gr

docs.unity3d.com

 

m.blog.naver.com/PostView.nhn?blogId=yoohee2018&logNo=220791044002&proxyReferer=https:%2F%2Fwww.google.com%2F

Comments