コード例 #1
0
ファイル: threading.py プロジェクト: CJT-Jackton/panda3d
def current_thread():
    t = core.Thread.getCurrentThread()
    return _thread._get_thread_wrapper(t, _create_thread_wrapper)
コード例 #2
0
ファイル: threading.py プロジェクト: Astron/panda3d
def main_thread():
    t = core.Thread.getMainThread()
    return _thread._get_thread_wrapper(t, _create_thread_wrapper)
コード例 #3
0
def current_thread():
    t = pm.Thread.getCurrentThread()
    return _thread._get_thread_wrapper(t, _create_thread_wrapper)
コード例 #4
0
ファイル: threading.py プロジェクト: C0MPU73R/Panda3D-Astron
def main_thread():
    t = core.Thread.getMainThread()
    return _thread._get_thread_wrapper(t, _create_thread_wrapper)