Code của em nó báo lỗi là :
highlight_color = color.lime) ^ SyntaxError: expected ':'
và
oxel = Voxel() app.run()
NameError: name 'Voxel' is not defined
mong các cao nhân giúp đỡ
import ursina
from ursina import *
from ursina import texture
class Voxel(Button):
def __init__(
parent = scene,
position = (0,0,0),
model = 'cube',
origin_y = 0.5,
texture = 'white_cube',
color = color.white,
highlight_color = color.lime)
app = Ursina
for z in range(8):
for x in range(8):
voxel = Voxel()
app.run()