EntityNew
Method Signature
EntityNew(entityName=[String], properties=[Struct], ignoreExtras=[Boolean])Arguments
Argument
Type
Required
Description
Default
Examples
Creating Simple Entities
var myEntity = entityNew( "Auto" );var myEntity = entityNew( "Auto", {
Make = "Toyota",
Model = "Camry",
Year = 2020
} );Ignoring Extra Properties
Related
Last updated
Was this helpful?