gobj_stop()
#
Stops the execution of the given gobj
instance, ensuring it is no longer running. If the gobj
is playing, it will be paused before stopping.
Prototype
int gobj_stop(
hgobj gobj
);
Parameters
Key |
Type |
Description |
---|---|---|
|
|
The |
Return Value
Returns 0 on success, or -1 if the gobj
is already stopped, destroying, or invalid.
Notes
If the gobj
is playing, it will be paused before stopping. If the gobj
is already stopped, an error is logged.
Prototype
// Not applicable in JS
Prototype
# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples