Replies: 2 comments 1 reply
-
I guess you are asking for something like this. Here's the code :
|
Beta Was this translation helpful? Give feedback.
-
I interpreted your question as asking for a way to create a custom sky. To create a skybox, you can use the built-in from ursina import *
app = Ursina()
skybox_image = load_texture("custom_skybox_image.png")
Sky(texture=skybox_image)
app.run() This script will load a new texture from whatever path your enter in |
Beta Was this translation helpful? Give feedback.
-
I want to have a background but can't because there's no way to set the background color or texture
I tried making a big plane and setting it a color and it worked, but there's no way to make a texture that repeats since the plane is 10000x10000
So, if there's a way to set the background color then tell me (and texture too)
And if there's a way to make a repeated texture but not the said aboe then tell me that
Beta Was this translation helpful? Give feedback.
All reactions