Difference between revisions of "IC Python API:RLPy RDialogCallback"
From Reallusion Wiki!
Chuck (RL) (Talk | contribs) (Created page with "{{TOC}} {{Parent|IC_Python_API:RL_Python_Modules|Modules}} ==Inheritance== This class inherits public member functions from: *RLPy.RCallback =...") |
Chuck (RL) (Talk | contribs) m |
||
Line 30: | Line 30: | ||
<div style="margin-left: 2em;">Dialog closed - bool | <div style="margin-left: 2em;">Dialog closed - bool | ||
</div> | </div> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Revision as of 19:41, 28 March 2019
- Main article: Modules.
Inheritance
This class inherits public member functions from:
Detailed Description
This class is used to register callbacks for dialog events.
class MyDialogCallback(RLPy.RDialogCallback):
def __init__(self):
RLPy.RDialogCallback.__init__(self)
def OnDialogHide(self):
print("Dialog is be Hide")
def OnDialogShow(self):
print("Dialog is be Show")
def OnDialogClose(self):
print("Dialog is be Close")
mydialog = RUi.CreateRDialog()
mycallback = MyDialogCallback()
mydialog.RegisterEventCallBack(mycallback)
Member Functions
OnDialogClose
RLPy.RDialogCallback.OnDialogClose ( self )
Callback for dialog close.
Returns
Dialog closed - bool