Skip to content

Release v0.0.6

Latest
Compare
Choose a tag to compare
@Jagerente Jagerente released this 30 Nov 03:12
76a5981

What's Changed

Annotations Example

NOTE: Local variables unsupported yet. Only fields and methods.

class AnnotationsDemo
{
    # @type Human
    _myHuman = null;

    # @type Character
    _myCharacter = null;

    /*
        @type Timer
    */
    _myTimer = null;

    /*@type Object*/
    _myObject = null;

    # @param foo float
    # @param bar Human
    # @param baz Titan
    # @return Timer
    function MethodExample(foo, bar, baz)
    {
        return Timer();
    }

    /*
      @param foo string
      @param bar bool
      @param baz Vector3
      @return int
    */
    function MethodExample2(foo, bar, baz)
    {
        return 83;
    }
}

Full Changelog: v0.0.5...v0.0.6