“Unity Custom Editor Draw Line в сцене” Ответ

линия рисования инспектора единства


   //============================================================
   void GuiLine( int i_height = 1 )
   {
       Rect rect = EditorGUILayout.GetControlRect(false, i_height );
       rect.height = i_height;
       EditorGUI.DrawRect(rect, new Color ( 0.5f,0.5f,0.5f, 1 ) );
   }
Omadel

Unity Custom Editor Draw Line в сцене

 Handles.DrawLine(pos1, pos2);
Doctor Bronze

Ответы похожие на “Unity Custom Editor Draw Line в сцене”

Вопросы похожие на “Unity Custom Editor Draw Line в сцене”

Больше похожих ответов на “Unity Custom Editor Draw Line в сцене” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования