예제 #1
0
파일: My.cs 프로젝트: coeur-cai/TimeLIne
 public void MyStudy(string t1, string t2)
 {
     FSPDebuger.LogTrack(5, t1, t2);/*study*/
     //Debug.Log("study");
 }
예제 #2
0
파일: My.cs 프로젝트: coeur-cai/TimeLIne
 public void Myfavorite(int name, int sex, int age)
 {
     FSPDebuger.LogTrack(1, name.ToString(), sex.ToString(), age.ToString());/*favorite*/
     //Debug.Log("favorite");
 }
예제 #3
0
파일: My.cs 프로젝트: coeur-cai/TimeLIne
 public void MyWeight(string weight)
 {
     FSPDebuger.LogTrack(3, weight); /*weight*/
     //Debug.Log("weight");
 }
예제 #4
0
파일: My.cs 프로젝트: coeur-cai/TimeLIne
 public void MyHeight(string height)
 {
     FSPDebuger.LogTrack(2, height); /*height*/
     //Debug.Log("height");
 }
예제 #5
0
파일: My.cs 프로젝트: coeur-cai/TimeLIne
 public void MySex(int sex)
 {
     FSPDebuger.LogTrack(4, sex.ToString());  /*Sex*/
     //Debug.Log("Sex");
 }