Difference between revisions of "CreateBlob"

From King Arthur's Gold Wiki
Jump to: navigation, search
Line 7: Line 7:
 
There are two variants, one of which will also accept a team number and position vector.
 
There are two variants, one of which will also accept a team number and position vector.
  
<syntaxhighlight lang="cpp">[[CBlob]]@ CreateBlob( const string &factoryName, const string &configFilename )
+
<syntaxhighlight lang="cpp">CBlob@ CreateBlob( const string &factoryName, const string &configFilename )
[[CBlob]]@ CreateBlob( const string &factoryName, const string &configFilename, u16 team, Vec2f Position )</syntaxhighlight>
+
CBlob@ CreateBlob( const string &factoryName, const string &configFilename, u16 team, Vec2f Position )</syntaxhighlight>
  
  
 
Example from Entities/Characters/Scripts/ArcherLogic.as:
 
Example from Entities/Characters/Scripts/ArcherLogic.as:
<syntaxhighlight lang="cpp">[[CBlob]]@ arrow = CreateBlob( "genericitem", "Entities/Items/Arrow.cfg" );</syntaxhighlight>
+
<syntaxhighlight lang="cpp">CBlob@ arrow = CreateBlob( "genericitem", "Entities/Items/Arrow.cfg" );</syntaxhighlight>
  
  
 
Example from Entities/Workshops/WorkshopTasks.as:
 
Example from Entities/Workshops/WorkshopTasks.as:
<syntaxhighlight lang="cpp">[[CBlob]]@ shopBlob = CreateBlob( "genericblock", "Entities/Workshops/Base/WorkshopWAR.cfg", 0, this.getBlob().getPosition() );</syntaxhighlight>
+
<syntaxhighlight lang="cpp">CBlob@ shopBlob = CreateBlob( "genericblock", "Entities/Workshops/Base/WorkshopWAR.cfg", 0, this.getBlob().getPosition() );</syntaxhighlight>
  
 
[[Category:Scripting]]
 
[[Category:Scripting]]
 
[[Category:Global Functions]]
 
[[Category:Global Functions]]

Revision as of 16:47, 15 August 2012

Creates a CBlob with the given factory and the given path to a config file defining the CBlob. Returns a reference to the created CBlob.

For factoryName, either pass genericitem or genericblock. Use genericblock if the block needs to settle on the map grid, otherwise use genericitem.

There are two variants, one of which will also accept a team number and position vector.

CBlob@ CreateBlob( const string &factoryName, const string &configFilename )
CBlob@ CreateBlob( const string &factoryName, const string &configFilename, u16 team, Vec2f Position )


Example from Entities/Characters/Scripts/ArcherLogic.as:

CBlob@ arrow = CreateBlob( "genericitem", "Entities/Items/Arrow.cfg" );


Example from Entities/Workshops/WorkshopTasks.as:

CBlob@ shopBlob = CreateBlob( "genericblock", "Entities/Workshops/Base/WorkshopWAR.cfg", 0, this.getBlob().getPosition() );