GetContentImageFromInstruction() private method

private GetContentImageFromInstruction ( int instructionIndex ) : Texture
instructionIndex int
return UnityEngine.Texture
コード例 #1
0
 internal static GUIContent GetContentFromInstruction(int instructionIndex)
 {
     return(new GUIContent
     {
         text = GUIViewDebuggerHelper.GetContentTextFromInstruction(instructionIndex),
         image = GUIViewDebuggerHelper.GetContentImageFromInstruction(instructionIndex)
     });
 }