Extending from other projects

Is there a way to extend off the existing game projects? For instance if I’m working on an FPS, can I create my game and have it also extend off ShooterGame’s classes?

Cheers

Hi Matt,

There is no way to extend a class from a class in a different project. However, you can go into the other project’s files and copy the desired class over. Once the class’ files are brought over, you should be able to extend your own class. I hope that this has helped. If there is anything else that we can clarify, please let us know.

Thank you,

Alexander

That’s what I thought, thanks Alexander.

Is this going to be added? It seems like it’d be super useful for people developing frameworks that could be shared amongst the community.

While you can not extend classes from other projects, you can create a code plugin and extend classes from that code.

Here is the documentation: Link

Note that plugins are very new and subject to change.