上传者: 42135753
|
上传时间: 2021-11-10 16:41:33
|
文件大小: 105KB
|
文件类型: -
SlickView
Unity Editor的内置自动布局ScrollView GUI与滚动多少元素成比例地降低了性能。
仅几百个元素,编辑器的帧速率就变得越来越差。
内置ScrollView的典型用法
_scrollPosition = EditorGUILayout . BeginScrollView ( _scrollPosition );
for ( int i = 0 ; i < elementList . Count ; i ++ )
{
EditorGUILayout . LabelField ( elementList [ i ]. name );
EditorGUILayout . IntField ( i );