Advertisement
LittleAngel

Untitled

Mar 10th, 2011
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. GUILayout.Space(20);
  2.  
  3. itemList[viewIndex-1].slotType = (SlotType)EditorGUILayout.EnumPopup ("Slot Type", itemList[viewIndex-1].slotType);
  4. itemList[viewIndex-1].itemType = (ItemType)EditorGUILayout.EnumPopup ("Item Type", itemList[viewIndex-1].itemType);
  5. itemList[viewIndex-1].itemObject = EditorGUILayout.ObjectField ("Item Object", itemList[viewIndex-1].itemObject, typeof (Rigidbody)) as Rigidbody;
  6.  
  7. GUILayout.Space(10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement