Float Array Actor Event
Quick Facts
| Property | Value |
|---|---|
| Class | CENPyOlpFloatArrayActorEvent |
| Module | cenpylib.CENPyOlpFloatArrayActorEvent |
| Package | cenpylib |
| Release | R2025.2.4 |
| Methods | 3 |
| Inherits from | CENPyOlpBuiltInEvent |
Inheritance
Quick Start
# Boilerplate Example
# Acquire the event object from the runtime context
floatArrayActorEvent = ... # provided by the frameworkMethod Index
| Method | Returns | Summary |
|---|---|---|
SetValues | — | Set actor value. |
GetValueSize | int | Get actor value size. |
GetValues | list | Get actor values. |
Query Methods
GetValueSize
def GetValueSize() -> intGet actor value size.
Returns: int — the number of float values
GetValues
def GetValues() -> listGet actor values.
Returns: list — actor values as a vector of floats
Mutation Methods
SetValues
def SetValues(values: list)Set actor value.
Parameters:
| Name | Type | Description |
|---|---|---|
values | list | new values as array of floats |
Version Notes
This class is documented as of release R2025.2.4.
Was this page helpful?