我目前正在摆弄 python 和 cocos2D
我想制作一个带有缩进空间的简单显示,就像这样
import cocos
from cocos.director import director
class MyLayer(cocos.layer.Layer):
def __init__(self):
#Setting the coordinate for the base layer
self.x = 200
self.y = 100
#A first layer of text
x_basic_text = 0
y_basic_text = 0
self.basic_text = cocos.text.Label("Unindented text", x=x_basic_text, y=y_basic_text )
#A second layer of text
y_indent_text = -20 #So that it doesn't squeeze with the basic text layer
x_indent_text = self.basic_text.width/3 #which doesn't work since layers have no width attribute
self.indent_text = cocos.text.Label("Indented text", x=x_indent_text, y=y_indent_text )
director.init(resizable=True)
director.run( MyLayer() )
我想要做的是在第一个标签下方显示第二个标签,并将第一个标签的三分之一向右移动。
有谁知道我怎么能得到第一个标签的宽度呢?
编辑:这是开发人员回答的问题,即为什么没有明确的访问权限。