godot.annotation.Export.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of godot-library-release Show documentation
Show all versions of godot-library-release Show documentation
Contains godot api as kotlin classes and jvm cpp interaction code.
The newest version!
package godot.annotation
/**
* Mark a registered property as exported and thus visible in the inspector.
*
* Only core types and references can be exported.
*
* The property needs to have the @[RegisterProperty] annotation added as well
*/
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.FIELD)
@Retention(AnnotationRetention.RUNTIME)
annotation class Export