hm_me_entitiesget
Returns the entity IDs of a specific entity type contained in a module.
Syntax
hm_me_entitiesget id entity_typeType
HyperWorks Tcl Query
Description
Returns the entity IDs of a specific entity type contained in a module.
Inputs
- id
- The ID of the module to query.
- entity_type
- The type of entity to query.
Example
To get the properties contained in module
10:
hm_me_entitiesget 10 props
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}