我正在使用 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;
}