Difference between revisions of "IC Python API:RLPy RGlobal"
From Reallusion Wiki!
Chuck (RL) (Talk | contribs) m (→Member Functions) |
Chuck (RL) (Talk | contribs) m (→Description) |
||
Line 1: | Line 1: | ||
{{TOC}} | {{TOC}} | ||
+ | |||
+ | {{TOC}} | ||
+ | {{Parent|IC_Python_API:RL_Python_Modules#System|System Module}} | ||
+ | |||
+ | Class in RLPy / Inherits from: _object | ||
== Description == | == Description == |
Revision as of 01:33, 17 January 2019
Contents
- Main article: System Module.
Class in RLPy / Inherits from: _object
Description
This class provides many of the common API global functions.
Member Functions
Function | Syntax | Description | Examples |
---|---|---|---|
GetWindow | def RLPy.RTime.GetWindow(self)
|
Get the address of the dialog window. | The following example fetches the current frame time in milliseconds: import RLPy
# Put the current frame time into a variable.
time = RLPy.RGlobal.GetTime()
# Return the current frame time in milliseconds.
print(time.GetValue())
|
GetTitle(self) | def RLPy.RTime.GetTitle(self)
|
Retrieve the name of the dialog window. | The following example creates a dialog window and sets its title: import RLPy
rl_dialog = RLPy.RUi.CreateRDialog()
print(rl_dialog.GetWindowTitle())
rl_dialog.SetWindowTitle("main_dialog")
print(rl_dialog.GetWindowTitle())
# DefaultWidget
# main_dialog
|