gpt4 book ai didi

ios - 旋转设备时如何更改 SKScene 大小?

转载 作者:行者123 更新时间:2023-11-28 09:21:43 26 4
gpt4 key购买 nike

我正在尝试制作一个使用递归函数呈现分形树的 SKScene。每个分支都是一个 SKShapeNode。初始线长应始终是场景高度的百分比。我有一个用于当前返回 frame.height * 0.3 的第一行长度的计算变量。我的问题是我想在设备旋转时保持正确的百分比。我将以下代码添加到我的 ViewController 中:

    var scene: FractalTreeScene!
override func didRotate(from fromInterfaceOrientation: UIInterfaceOrientation) {
if fromInterfaceOrientation == .landscapeLeft || fromInterfaceOrientation == .landscapeRight {
scene.size = CGSize(width: 1337, height: 750)
} else {
scene.size = CGSize(width: 750, height: 1337)
}
scene.drawTree()
}
override func viewDidLoad() {
super.viewDidLoad()


if let view = self.view as! SKView? {
// Load the SKScene from 'GameScene.sks'
scene = FractalTreeScene()
// Set the scale mode to scale to fit the window
scene.scaleMode = .aspectFill
if UIDevice.current.orientation == .landscapeLeft || UIDevice.current.orientation == .landscapeRight {
scene.size = CGSize(width: 1337, height: 750)
} else {
scene.size = CGSize(width: 750, height: 1337)
}
// Present the scene
view.presentScene(scene)

view.ignoresSiblingOrder = true

view.showsFPS = true
view.showsNodeCount = true
}
}

然后我以纵向启动应用程序,一切看起来都很好,然后我尝试旋转到横向并且大小根本没有改变(我添加了 print(size) 来更新场景中的功能)。然后我旋转回纵向,尺寸更改为在横向旋转回横向时应该改变的尺寸让我得到了纵向尺寸。

然后我重新启动了纵向旋转到横向右侧的应用程序,正如预期的那样,尺寸没有改变,然后我旋转到横向左侧并且尺寸更改为正确的值。

很明显,代码有效,但只有当我在更改场景后旋转场景时,尺寸才会真正改变。有没有办法立即进行此更改?或者在旋转时是否有更好的改变场景大小的方法?甚至有没有办法在不改变场景大小的情况下保持线的大小和相对于屏幕的位置?

最佳答案

我通过将代码更改为来修复它:

 var scene: FractalTreeScene!
override func didRotate(from fromInterfaceOrientation: UIInterfaceOrientation) {

if UIApplication.shared.statusBarOrientation.isLandscape {
scene.size = CGSize(width: 1337, height: 750)
} else {
scene.size = CGSize(width: 750, height: 1337)
}
scene.drawTree()
}
override func viewDidLoad() {
super.viewDidLoad()


if let view = self.view as! SKView? {
// Load the SKScene from 'GameScene.sks'
scene = FractalTreeScene()
// Set the scale mode to scale to fit the window
scene.scaleMode = .aspectFill

if UIApplication.shared.statusBarOrientation.isLandscape{
scene.size = CGSize(width: 1337, height: 750)
} else {
scene.size = CGSize(width: 750, height: 1337)
}
// Present the scene
view.presentScene(scene)

view.ignoresSiblingOrder = true

view.showsFPS = true
view.showsNodeCount = true
}
}

关于ios - 旋转设备时如何更改 SKScene 大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57152353/

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