# -*- coding:utf-8 -*- # title :标签对象 # description :标签对象 # author :Python超人 # date :2023-10-29 # link :https://gitcode.net/pythoncr/ # python_version :3.9 # ============================================================================== from ursina import Text, color class Label(Text): def __init__(self, text='', position=(0, 0, 0), **kwargs): # def __init__(self, text='', start_tag=start_tag, end_tag=end_tag, ignore=True, **kwargs): super().__init__( text=text, position=position, **kwargs )