ShowReadme() public static method

public static ShowReadme ( string name, string text, bool richText, bool markdownish, Component component, bool force ) : void
name string
text string
richText bool
markdownish bool
component UnityEngine.Component
force bool
return void
コード例 #1
0
 public void ShowReadme(bool force = false)
 {
     if (file != null)
     {
         HFTReadmeUtils.ShowReadme(file.name, file.text, richText, markdownish, this, force);
     }
 }
コード例 #2
0
ファイル: HFTReadme.cs プロジェクト: aaronyuen2/earthDefender
 public void ShowReadme(bool force = false)
 {
     if (message != null)
     {
         HFTReadmeUtils.ShowReadme("**README**", message, richText, markdownish, this, force);
     }
 }