2015-03-30 69 views
0

我一直在試圖把評論放到我的文件中,所以提供更多的功能和詳細信息,但doxygen並沒有註冊我的任何評論。我就是這個原因。以下是我在代碼中把Doxygen沒有收到評論

/*!* comment1 */ 
 
\t public Texture whiteAsteroid; 
 
\t public Texture redAsteroid; 
 
\t public Texture yellowAsteroid; 
 
\t public Texture blueAsteroid; 
 

 
\t public GameObject particleDeathEffect; 
 

 
\t private bool whiteCollison; 
 
\t private bool redCollison; 
 
\t /*!* comment2 */ 
 
\t private bool yellowCollison; 
 
\t private bool blueCollison; 
 

 
\t /*!* comment3 */ 
 
\t void Start() 
 
\t { 
 
\t \t // sets the rotate speed to random value 
 
\t \t rotateSpeed = Random.Range (2f, 5f); 
 
\t \t /*!* comment4 */ 
 
\t \t size = Random.Range (3f, 10f); 
 
\t \t transform.localScale = new Vector3 (size, 1, size);

註釋1顯示得很好,但沒有其他人做。難道我做錯了什麼?任何幫助表示讚賞:)

+0

請添加語言標籤。 – 2015-03-30 21:24:26

+0

@mjuarez:doxygen是一個更好的'javadoc'。 – 2015-03-30 23:25:58

回答