Doxygen 不接收评论
Doxygen not picking up comments
我一直在尝试将评论放入我的文件中,以便提供更详细的功能信息等,但 doxygen 没有记录我的任何评论。我就是为什么会这样。这是我在代码中输入的内容
/*!* comment1 */
public Texture whiteAsteroid;
public Texture redAsteroid;
public Texture yellowAsteroid;
public Texture blueAsteroid;
public GameObject particleDeathEffect;
private bool whiteCollison;
private bool redCollison;
/*!* comment2 */
private bool yellowCollison;
private bool blueCollison;
/*!* comment3 */
void Start ()
{
// sets the rotate speed to random value
rotateSpeed = Random.Range (2f, 5f);
/*!* comment4 */
size = Random.Range (3f, 10f);
transform.localScale = new Vector3 (size, 1, size);
comment1 看起来不错,但 none 的其他人确实如此。难道我做错了什么?感谢您的帮助:)
doxygen中默认不出现私有元素注释
设置EXTRACT_PRIVATE
。 http://www.doxygen.nl/manual/config.html#cfg_extract_private
我一直在尝试将评论放入我的文件中,以便提供更详细的功能信息等,但 doxygen 没有记录我的任何评论。我就是为什么会这样。这是我在代码中输入的内容
/*!* comment1 */
public Texture whiteAsteroid;
public Texture redAsteroid;
public Texture yellowAsteroid;
public Texture blueAsteroid;
public GameObject particleDeathEffect;
private bool whiteCollison;
private bool redCollison;
/*!* comment2 */
private bool yellowCollison;
private bool blueCollison;
/*!* comment3 */
void Start ()
{
// sets the rotate speed to random value
rotateSpeed = Random.Range (2f, 5f);
/*!* comment4 */
size = Random.Range (3f, 10f);
transform.localScale = new Vector3 (size, 1, size);
comment1 看起来不错,但 none 的其他人确实如此。难道我做错了什么?感谢您的帮助:)
doxygen中默认不出现私有元素注释
设置EXTRACT_PRIVATE
。 http://www.doxygen.nl/manual/config.html#cfg_extract_private