You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
UtkarshMoholkar
changed the title
I am using multithreading to Spawn an Blueprint Actor and Unreal Engine is crashing suddenly when the spawn function called.
I am using multithreading to Spawn a Blueprint Actor and Unreal Engine is crashing suddenly when the spawn function gets called.
Apr 12, 2023
def begin_play(self):
self.spawn_thread = Thread(target=self.spawn_process)
self.spawn_thread.start()
def spawn_process(self):
time.sleep(10)
self.world = self.uobject.get_world()
self.spacecraft_object = self.world.actor_spawn("PyActor", FVector(-300, 0, 500), FRotator(0, 0, 0))
Originally posted by @UtkarshMoholkar in #34 (comment)
The text was updated successfully, but these errors were encountered: