Add support for creating custom BoxVolume type in C#

This commit is contained in:
Wojtek Figat
2021-08-08 20:19:43 +02:00
parent 847641f655
commit a0e1c7c37e
2 changed files with 7 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
/// </summary>
API_CLASS(Abstract) class FLAXENGINE_API BoxVolume : public Actor
{
DECLARE_SCENE_OBJECT_ABSTRACT(BoxVolume);
DECLARE_SCENE_OBJECT(BoxVolume);
protected:
Vector3 _size;
@@ -47,7 +47,7 @@ protected:
}
#if USE_EDITOR
virtual Color GetWiresColor() = 0;
virtual Color GetWiresColor();
#endif
public: