Advertisement

Recompiling shared classes

Started by June 04, 2013 08:58 AM
0 comments, last by WitchLord 11 years, 5 months ago

Hey,

I need to recompile a script during runtime which has a shared class or shared function. Angelscript doesn't discard those in DiscardModule(). How do I get rid of them at runtime so I can recompile?

KAG DEVLOG: http://kagdev.tumblr.com/

The shared classes/functions are kept alive until they are no longer used in any code. For this reason they can be difficult to recompile.

Not only must you discard all the modules that use the shared entities, but you must also run the garbage collector in a full iteration to make sure the GC has been able to clean up potential circular references between them.

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

This topic is closed to new replies.

Advertisement