Make GTA 1 Style Game in Python (Ursina Engine) youtu.be/Tgc0MAwYXWs
πŸ‘︎ 191
πŸ’¬︎
πŸ‘€︎ u/TommyNaruto
πŸ“…︎ Jan 08 2022
🚨︎ report
Merry Christmas from Linux, Python and Ursina v.redd.it/bca9tb22no781
πŸ‘︎ 222
πŸ’¬︎
πŸ‘€︎ u/balcopc
πŸ“…︎ Dec 25 2021
🚨︎ report
Make GTA 1 Game in Python (Ursina Engine) youtu.be/Tgc0MAwYXWs
πŸ‘︎ 21
πŸ’¬︎
πŸ‘€︎ u/Shun_Hai
πŸ“…︎ Jan 08 2022
🚨︎ report
Bear Joke Life Hack of the Day 8/3/16: The Atlas Bear is the only known bear in the Ursinae line known to be native to Africa. It is believed to have become extinct in the 1870s. Make (respectful) jokes about the Atlas Bear.
πŸ‘︎ 7
πŸ’¬︎
πŸ‘€︎ u/terattt
πŸ“…︎ Aug 03 2016
🚨︎ report
Ursina (Python Game Engine)

I saw a post yesterday about Ursina and searched it up, and it looks really cool. Maybe a successor or alternative to pygame in the future?

Ursina

πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/The_Navy_Archer
πŸ“…︎ Dec 10 2021
🚨︎ report
[OSR] SwitzerlandπŸ‡¨πŸ‡­ will be represented by Ursina with β€œMiu Cor” youtu.be/NIOQjkxtiiA
πŸ‘︎ 6
πŸ’¬︎
πŸ‘€︎ u/sfgadv
πŸ“…︎ Oct 15 2021
🚨︎ report
Minecraft-like clone using Ursina Engine and Python 3.9

Hi. I have followed a tutorial online of a minecraft clone using the ursina python module. I have since then created my own open-source Github repo in which I have a bunch of new ideas for the game upon development this year.

I have made this post to inform you about my project if you want to contribute and what you may think about it.

Best regards, Mihai Calinescu

EDIT: Thank you kind strangers for the silver and wholesome award! Really appreciate it.

πŸ‘︎ 316
πŸ’¬︎
πŸ“…︎ Apr 08 2021
🚨︎ report
having trouble install ursina with linux ubuntu

I have the folder but whenever I try to use the setup.py it always gives me this error: raceback (most recent call last):

File "setup.py", line 1, in <module>

from setuptools import find_packages, setup

ModuleNotFoundError: No module named 'setuptools'

it says that I'm missing something but I have no idea how to download this along with panda3d

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Snoo_63107
πŸ“…︎ Sep 10 2021
🚨︎ report
Destroy animator object in ursina

I have an animator object in ursina. I want to destroy it.

from ursina import *

app = Ursina()

walka = Animation("assets/zombies/zombie1/walk/",fps = 5,loop=True)

animator1 = Animator(animations= {"walk":walka})

animator1.state = "walk"

destroy(animator1)

app.run()

This doesn't seem to work and throws this error: AttributeError: 'Animator' object has no attribute 'eternal'

πŸ‘︎ 2
πŸ’¬︎
πŸ“…︎ Oct 05 2021
🚨︎ report
How to make a 3D Game in Python with Ursina Engine

Using the Ursina Engine, this can become quite simple

Check it out:

https://www.youtube.com/watch?v=UjW0Y3YoAVw

πŸ‘︎ 27
πŸ’¬︎
πŸ‘€︎ u/HerrZweistein
πŸ“…︎ Aug 01 2021
🚨︎ report
How to make a 3D Game in Python with Ursina Engine youtu.be/UjW0Y3YoAVw
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/HerrZweistein
πŸ“…︎ Aug 01 2021
🚨︎ report
Ursina animation location of images

I want to put an animation of a flappy bird images(both are linked) but when I do :

bird = Animation('img',<-- which is the name of the two png's

etc...

they say syntax error than none type is iterable( line 28 of animation.py in prefabs in ursina so can anyone help me pls pls pls cus i dont know where the images are supposed to go (what folder)

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Rid1TheBeast
πŸ“…︎ Jul 27 2021
🚨︎ report
Make 3D FPS Game in 1 Minute (Python Ursina Engine) youtu.be/lRv2ehxuLGQ
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/IndustryPhol
πŸ“…︎ Sep 23 2021
🚨︎ report
I made a Flappy Bird clone with 30 lines of code (Ursina Engine) youtube.com/watch?v=r5Ofs…
πŸ‘︎ 24
πŸ’¬︎
πŸ‘€︎ u/HerrZweistein
πŸ“…︎ Jul 18 2021
🚨︎ report
This is the last picture of Ursina von der DΓΌssel

better known as Urmel

Her kidneys are failing and she'll leave this planet tomorrow. 11 years, 4 months, 8 days old.

hug your furry babies.

πŸ‘︎ 82
πŸ’¬︎
πŸ‘€︎ u/NewfieCanOpener
πŸ“…︎ Jan 27 2021
🚨︎ report
How do I resolve if the texture does not load on the Ursina Engine? (load_texture does not work)

I am trying to create The minecraft python of this video But, when i tried to add a texture, the texture does not load Click to see a photo

from ursina import *  

def update(): 
    if held_keys['a']:     
       sans.x -= 6 * time.dt 
    if held_keys['d']:     
       sans.x -= -6 * time.dt    

app = Ursina()   

square = Entity(model = 'quad', color = color.red)   

sans = Entity(model = 'quad', texture = ('assets/sans.png'))   

app.run()
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/MobiStank
πŸ“…︎ Apr 18 2021
🚨︎ report
My Scuffed Minecraft made w/Python and Ursina game engine
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/THEGAMERKID1
πŸ“…︎ Feb 24 2021
🚨︎ report
Installing Ursina engine (mac os big sur 11.4)

How do I install Ursina on mac? I started 3 days ago and I don't really understand anything lol

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/ILikeTacozs
πŸ“…︎ Jul 07 2021
🚨︎ report
Ursina engine error

Hey, I'm having an error in ursina engine, whenever I run the program, I get an error saying "known pipe types: wglGraphicsPipe (3 aux display modules not yet loaded.) Can someone please help? :(

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/LightPearl678
πŸ“…︎ Jul 27 2021
🚨︎ report
Ursina Engine. Trying to Genetare ores in Minecraft Clone in the sample of Ursina.

Hi,

I am trying to Generate ores in the Minecraft Clone but I am new to Ursina Engine and a beginner in python. I tried to select a random block and destroy it and place a new block but I cannot because the destroy() function does allow only to destroy the entity and not with coordinates. Please help me to destroy the block or is there any other way?

Thank you in advance,

Rithik Gobinath.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Rithikvg
πŸ“…︎ Jun 08 2021
🚨︎ report
Need good TV knitting suggestions to keep me motivated πŸ€”. Working on the Ursina Sweater and I've got a lot of stockinette to work thru πŸ˜‰. Suggestions please! Obvs something I don't necessarily have to have my eye on constantly but not something in syndication for yrs. Lol
πŸ‘︎ 18
πŸ’¬︎
πŸ‘€︎ u/Ohsweetmelanie
πŸ“…︎ Feb 17 2021
🚨︎ report
I need help installing Ursina

I have been trying to download ursina and I managed to complete the pip install ursina command but when I try to import ursina into repl and pycharm it says there’s no module called ursina. If anyone knows how to fix this it would help a lot. Thanks

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/shsnsndnwjsnx
πŸ“…︎ Jan 22 2021
🚨︎ report
My Scuffed Minecraft made w/Python and Ursina game engine
πŸ‘︎ 8
πŸ’¬︎
πŸ‘€︎ u/THEGAMERKID1
πŸ“…︎ Feb 24 2021
🚨︎ report
missing model probleme on ursina

Hello, I have a problem, I'm trying to reproduce this video ( https://www.youtube.com/watch?v=DHSRaVeQxIk&list=PL8JioUfoULcV6oVwf9y0R6HkzUX0sZd1o&index=2&t=1717s&ab_channel=ClearCode ) but I can't because when I write "model = 'assets/block'" and start the program, it marks me "missing model : assets/block" in a loop. Please help me.

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/VroumEnM2
πŸ“…︎ Feb 09 2021
🚨︎ report
Ursina vs Pygame

Hi, I'm a physics student and I have to code a game using python, I was thinking about using pygame... but YouTube suggested me a video about Ursina.

Has anyone tried Ursina, would you suggest it over pygame? or you think pygame is better.

Thank you ;3

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/ElPachoLag
πŸ“…︎ May 11 2021
🚨︎ report
A rotation issue in Ursina Engine

Hey! This is my first post in r/learnpython because I promised myself to never post until I have a real problem so tell me if I did anything wrong.

I've been making this 2d terraria like game in Ursina Engine and all has been good, except when I try to make a projectile. (I have also looked on a bunch of forums and stuff but ursina isn't really that popular so I couldn't get good results)

Basically I made an arrow projectile that shoots towards your mouse pointer (the code below). It was working pretty cool and I added an arrow texture to it.

	def input(self, key):
		if key == 'left mouse down':
			arrow = Entity(parent=self, model='quad', scale=1, texture=arrow_texture)
			arrow.world_parent = scene
			arrow.animate_position(arrow.position+mouse.position.normalized()*10, curve=curve.linear, duration=1)
			destroy(arrow, delay=1)

I wanted to make it so the arrow would rotate towards the mouse pointer so I added a line of code that would rotate the arrow to test

arrow.rotation = Vec3(0,10,0)

The code looked like this now

	def input(self, key):
		if key == 'left mouse down':
			arrow = Entity(parent=self, model='quad', scale=1, texture=arrow_texture)
			arrow.world_parent = scene
			arrow.rotation = Vec3(0,10,0)
			arrow.animate_position(arrow.position+mouse.position.normalized()*10, curve=curve.linear, duration=1)
			destroy(arrow, delay=1)

When I run the game and click however, it doesn't rotate at all :/

(it also did some pretty funky things with the z order but I idon't know if that had anything to do with it)

Thanks for the help in advance!

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/TwistingTwisto
πŸ“…︎ May 14 2021
🚨︎ report
I tried the tutorial for Ursina. It didnt work

When I did the funtion, python 3.7 thought that def was invalid syntax

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/NobodyHere781
πŸ“…︎ Apr 21 2021
🚨︎ report
Made a networking for Ursina
πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/KeCraftOnium
πŸ“…︎ Apr 06 2021
🚨︎ report
NameError: name 'Ursina' is not defined

I have ursina installed correctly and I am using the latest version of python. I get the error when running the following code:

from ursina import *

app = Ursina()
app.run()
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/logo_to
πŸ“…︎ Jan 20 2021
🚨︎ report
πŸ‘︎ 83
πŸ’¬︎
πŸ‘€︎ u/pokepetter
πŸ“…︎ Nov 30 2019
🚨︎ report
Ursina Sweater - Instructions for Neck

Hello hello,

I'm almost done with my first Ursina Sweater and just have the neckline left. I've been going crazy trying to understand the instructions and have finished and frogged the neckline three times already. It says, "starting at the middle back of the sweater neck, pick up, knit and immediately bind-off all sts."

Does that mean I pick up all my neckline stitches first, knit them all, and then bind off (or bind off as I knit them?)? Or knit as I pick them up, then bind off? I'm going crazy trying to understand.

Thank you!

πŸ‘︎ 4
πŸ’¬︎
πŸ‘€︎ u/make-itfly
πŸ“…︎ Jan 03 2021
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.