gpt4 book ai didi

actionscript-3 - Starling AS3 IOS 启动画面

转载 作者:行者123 更新时间:2023-12-03 20:40:06 27 4
gpt4 key购买 nike

我已经在 AS3 和 Starling 中开发了一个要移植到 IOS 的应用程序。我已经更新了 Default.png 图像,效果很好,但是我的应用需要一段时间才能加载,黑屏显示大约 3-4 秒。

我到处寻找解决方案,但找不到任何可行的方法。有人有可行的解决方案吗?

非常感谢

最佳答案

我不确定目前是否有更简洁的解决方案,但我所做的是将默认屏幕的位图添加到 native Flash 阶段。然后,当 Starling 准备就绪时,我删除位图。

因此在实例化 Starling 之前,将位图图像添加到舞台(这将是 Flash 舞台)

public static var _splash:Bitmap;
//load or embed your bitmap//
addChild(_splash);

然后实例化并启动Starling。例如

myStarling = new Starling(Main, stage, null, null, Context3DRenderMode.AUTO, Context3DProfile.BASELINE);
myStarling.stage3D.addEventListener(starling.events.Event.CONTEXT3D_CREATE, function(e:flash.events.Event):void {
// Starling is ready!
myStarling.start();
});

在您的根 Starling 类(在本例中为 Main)中,使用 ADDED_TO_STAGE 监听器,当它被触发时,删除位图。

public function Main() {    
addEventListener(starling.events.Event.ADDED_TO_STAGE, onAdded);
}

private function onAdded ( e:starling.events.Event ):void {
StartUp._splash.parent.removeChild(StartUp._splash);
StartUp._splash = null;
}

在上面的示例中,根文档类称为“StartUp”。

关于actionscript-3 - Starling AS3 IOS 启动画面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13508440/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com