您好,我是LibGDX和AS的新手。我的编码中有错误:
“无法解析构造函数标签(java.lang.String)”
我的代码在这里。
countdownLabel = new Label(String.format("%03d", worldTimer));
new Label.LabelStyle(new BitmapFont(),Color.WHITE);
感谢您的帮助
答案 0 :(得分:0)
github.com/BrentAureli/SuperMario/blob/master/core/src/com/ ...这就是我要去的。我指的是第59行。
因此,将您的陈述与第59行进行比较:
countdownLabel = new Label(String.format("%03d", worldTimer)); new Label.LabelStyle(new BitmapFont(),Color.WHITE); // yours
countdownLabel = new Label(String.format("%03d", worldTimer), new Label.LabelStyle(new BitmapFont(), Color.WHITE)); // line 59
您现在看到区别了吗?