Doxygen for GDScript

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By EIREXE
:warning: Old Version Published before Godot 3 was released.

We have been using this internally, and we decided to make it free:

I have published a modified version of doxygen with gdscript support,

Known issues:

  • GDScript replaces python

Here’s my doxyfile:

http://termbin.com/1h7m

Here’s an example file:

## @package gdexample
#  Documentation for this module.
#
#  More details.
## Documentation for a function.
#
#  More details.
func function():
    pass
## Documentation for a class.
#
#  More details.
class GDClass:
   
    ## The constructor.
    func _init():
        var _memVar = 0;
   
    ## Documentation for a method.
    #  @param input Example input.
    func GDMethod(input):
        pass
     
    ## A class variable.
    var classVar = 0;
:bust_in_silhouette: Reply From: Juxxec

This is cool. Wish this could have been an addon so I don’t have to compile the entire Doxygen source.