我正在开发使用Starling,AS3 for mobile的应用程序,并希望整合Feathers UI。我正在使用Starling 1.2并试图添加一个MetalWorksMobile主题,但一直收到错误:找不到类型或者不是编译时常量:ImageLoader
不确定这意味着什么或如何解决它。
干杯
在主.as文件中:
this._theme = new MetalWorksMobileTheme(this.stage);
在MetalWorksMobileTheme.as中:
protected function imageLoaderFactory():ImageLoader
{
const image:ImageLoader = new ImageLoader();
image.textureScale = this.scale;
return image;
}
答案 0 :(得分:0)
你应该使用最后一个Starling版本的Feathers,你可以在这里https://github.com/PrimaryFeather/Starling-Framework.git。此版本中没有此类错误。