Create: Difference between revisions

From StarLogo Nova Wiki
No edit summary
Tag: Reverted
m (Reverted edits by Admin (talk) to last revision by Rev)
Tag: Rollback
Line 1: Line 1:
[[Category:Agents]]
[[Category:Agents]]
<section begin=image/>[[File:Take Camera.png|alt=take camera block|thumb]]<section end=image/>
<section begin=image/>[[File:Create Block.png|alt=The create block|thumb]]<section end=image/>
{{#vardefine:take camera|<code>take camera</code>}}
{{#vardefine:create|<code>create [_] [▼](s)</code>}}
<section begin=name/>'''<code>take camera</code>'''<section end=name/> is a [[code block]] part of the [[agents]] drawer.
<section begin=name/>'''<code>create [_] [▼](s)</code>'''<section end=name/> is a [[code block]] part of the [[agents]] drawer.
==Usage==
==Usage==


<code>take camera</code> changes the camera perspective to be from the point of view of the agent executing the code.  
<code>create [_] [▼](s)</code> is used to populate [[Spaceland]] with [[agent]]s.
 
===Syntax===
 
<code> create [Textbox: Number] [Dropdown: Type of Agent](s) </code>
 
==Nuances==
 
An important difference between {{#var:create}} and {{#vardefineecho:cedol|<code>[[Create Each Do|create [_] [▼](s) each do</code>]]}} is that {{#vardefineecho:cedo|<code>create [_] [▼](s) each do</code>}} allows a section of code to run individually for each [[agent]] that is created. {{#var:create}} only creates agents with the default [[trait]]s in the center of [[Spaceland]].
 
{{#var:cedol}} can be useful for [[randomizing traits]] and [[scattering agents without effecting others]].


{{#var:take camera}} can be useful for implementing interactive games from the first-person perspective.
==Related Blocks==
==Related Blocks==
*{{#var:cedol}}


==Relevant Video Resources==
==Relevant Video Resources==

Revision as of 23:29, 9 August 2022

The create block

create [_] [▼](s) is a code block part of the agents drawer.

Usage

create [_] [▼](s) is used to populate Spaceland with agents.

Syntax

create [Textbox: Number] [Dropdown: Type of Agent](s)

Nuances

An important difference between create [_] [▼](s) and create [_] [▼](s) each do is that create [_] [▼](s) each do allows a section of code to run individually for each agent that is created. create [_] [▼](s) only creates agents with the default traits in the center of Spaceland.

create [_] [▼](s) each do can be useful for randomizing traits and scattering agents without effecting others.

Related Blocks

Relevant Video Resources

Relevant Activities