/CallGaminDebug.cs Secret
Created
September 12, 2021 12:36
ゲーミングDebug.Logのサンプルメソッド
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Start() | |
{ | |
string msg = "1文字ずつ色を変えて出力してみよう!ゲーミング感が出てきてきっとキミのテンションも上がるはずだ!!!"; | |
GamingDebug.OutputLine(msg, ColorCodeHolder.ColorToneName.PccsVivid); | |
GamingDebug.OutputLine(msg, ColorCodeHolder.ColorToneName.MunsellBright); | |
GamingDebug.OutputLine(msg, ColorCodeHolder.ColorToneName.MunsellLight); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment