mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-25 14:25:38 +00:00
Updates to component classes -
Shift from ghosted components to entity-managed for networking Initial implementation of Systems through the Mesh Component
This commit is contained in:
parent
4341428d53
commit
8eb442490a
15 changed files with 706 additions and 312 deletions
10
Templates/BaseGame/game/core/CoreComponents.cs
Normal file
10
Templates/BaseGame/game/core/CoreComponents.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
function CoreComponentsModule::onCreate(%this)
|
||||
{
|
||||
%classList = enumerateConsoleClasses( "Component" );
|
||||
|
||||
foreach$( %componentClass in %classList )
|
||||
{
|
||||
echo("Native Component of type: " @ %componentClass);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue