GameFramework.SceneContextInfo.HighlightPromptAll C# (CSharp) Method

HighlightPromptAll() public method

public HighlightPromptAll ( string dict ) : void
dict string
return void
        public void HighlightPromptAll(string dict, params object[] args)
        {
            HighlightPrompt(0, dict, args);
        }

Usage Example

示例#1
0
 static public int HighlightPromptAll(IntPtr l)
 {
     try {
         GameFramework.SceneContextInfo self = (GameFramework.SceneContextInfo)checkSelf(l);
         System.String a1;
         checkType(l, 2, out a1);
         System.Object[] a2;
         checkParams(l, 3, out a2);
         self.HighlightPromptAll(a1, a2);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }