我使用Control-P5
库来绘制text label
void setup(){
size(1400,800);
cp5 = new ControlP5(this);
myTextlabelB = new Textlabel(cp5,"Hello world",100,100,400,200);
}
void draw(){
myTextlabelB.draw(this);
if(mousePressed){
myTextlabelB.hide();
// I want to hide the label here, but the hide function doesn't work
}
}
答案 0 :(得分:0)
隐藏Textlable
存在一些错误,但它正在与Label
类合作,因此您只需要获取label
部分然后隐藏它:
myTextlabelB.get().hide();
在draw()
功能
background(0);