Add support for Events in Scripting API reflection in Editor

This commit is contained in:
Wojtek Figat
2021-01-21 14:40:53 +01:00
parent c2f745397a
commit 4042d466d3
2 changed files with 28 additions and 2 deletions

View File

@@ -50,6 +50,9 @@ namespace FlaxEditor.Content
/// <inheritdoc />
public bool IsMethod => false;
/// <inheritdoc />
public bool IsEvent => false;
/// <inheritdoc />
public bool HasGet => true;
@@ -174,6 +177,9 @@ namespace FlaxEditor.Content
/// <inheritdoc />
public bool IsMethod => true;
/// <inheritdoc />
public bool IsEvent => false;
/// <inheritdoc />
public bool HasGet => false;