Skip to content

Conversation

SKY123C
Copy link
Contributor

@SKY123C SKY123C commented Nov 22, 2024

import unreal
import threading

def a():
    print("a func")

def b():
    print("b func")
    unreal.executeInMainThreadWithResult(a)

def c():
    print("c func")
    unreal.executeInMainThreadWithResult(b)
    
my_thread = threading.Thread(target=c)
my_thread.start()

this commit can fix this program

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant