-
Loading a texture
```python
load_texture("texture_name.jpg")
```
Raises the following exception
`AttributeError: 'Texture' object has no attribute '_cached_image'`
Here's the Traceback
`…
-
This is the function used to generate the cubes:
```
def g(x,y,z):
cube = Entity()
sides_face = Entity(parent=cube, model='cube', texture='grass_side', position=(x+0, y+0, z+0), scale=(1,1…
-
I used 'parent=terrain' and it didnt still worked for me. I have this code:
```py
from ursina import *
import math
app = Ursina()
window.borderless = False
window.exit_button.visible = False
…
-
I get the following errors when running a simple program in python 3.11 in a virtual environment:
```
:prc(warning): Invalid integer value for ConfigVariable win-size: 1152.0
:prc(warning): Inval…
-
Hi! I created a project using ursina. I want to turn it into an application using py2app. Every time I do this it closes and gives me this error:
File "direct/showbase/ShowBase.pyc", line 339, in _…
-
I want to set a maximum and minimum zoom limits of an entity in my ursina app. I use to EditorCamera() attribute to rotate and zoom the object. How can I set the zoom limits?
-
The code written in the readme file gives this error:
Traceback (most recent call last):
File "c:\Users\Lenovo\Mombie challenge edtion\ursina editor\Editor\ok.py", line 94, in
main().run()
…
-
I have this in the same directory:
![grass_side](https://github.com/pokepetter/ursina/assets/121721820/fa31a677-4b5c-4e48-8791-507e09157a3b)
![dirt](https://github.com/pokepetter/ursina/assets/12172…
-
Greetings, I am trying to make a simple title screen with a city background, But It's really hard to do so, I could either use load_blender_scene or load_model and get a problem eitherway.
Here's w…
-
I am trying to apply a glow map on my model using panda 3d method mentioned in panda3d documentation https://docs.panda3d.org/1.10/python/programming/texturing/texture-modes
here is my code :…