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
If nvisii.clear_all() and nvisii.set_dome_light_texture() are called too close together, the application will prematurely terminate.
Simple test case:
import nvisii
from nvisii import texture
import time
nvisii.initialize(headless=False, verbose=True)
while True:
print('clearing...')
nvisii.clear_all()
print('loading skybox...')
tex : texture = texture.create_from_file('Skybox', 'skybox.jpg')
nvisii.set_dome_light_texture(tex, True)
time.sleep(.01)
The output from the while loop should keep repeating forever, but in reality, the loop will run a couple of times and then the application will terminate:
clearing...
loading skybox...
clearing...
loading skybox...
Press any key to continue . . .
The text was updated successfully, but these errors were encountered:
If
nvisii.clear_all()
andnvisii.set_dome_light_texture()
are called too close together, the application will prematurely terminate.Simple test case:
The output from the while loop should keep repeating forever, but in reality, the loop will run a couple of times and then the application will terminate:
The text was updated successfully, but these errors were encountered: