菜鸟教程小白 发表于 2022-12-13 09:37:50

ios - SpriteKit坐标的转换


                                            <p><p>我正在尝试让我的游戏在 iOS 9 上运行,但遇到了问题。
我正在使用此代码来计算新节点的位置,它在 iOS 7 和 8 中运行良好,但现在在 iOS 9 中无法运行:</p>

<pre><code>CGPoint position = .x - 30, .y - 30)];
</code></pre>

<p>我尝试了另一种方法,但有同样的问题:</p>

<pre><code>CGPoint position = .x + 30), roundf(.y + 30)) toScene:self.scene];
</code></pre>

<p>所以我决定用这个来测试它:</p>

<pre><code>NSLog(@&#34;%f&#34;, node.position.y);
CGPoint test = ;
NSLog(@&#34;%f&#34;, test.y);
CGPoint test1 = ;
NSLog(@&#34;%f&#34;, test1.y);
</code></pre>

<p>并收到此作为输出:</p>

<pre><code>2015-08-06 20:25:57.215 Rendzu 59.076904
2015-08-06 20:25:57.216 Rendzu -29.999998
2015-08-06 20:25:57.216 Rendzu 827.076904
</code></pre>

<p>现在我认为这是一个错误,或者我只是不明白它是如何工作的。有人可以向我解释一下吗?谢谢你的帮助,对不起我的英语。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的,我认为这是 iOS 9 中的一个错误,尽管存在解决方法。 <code>convertPoint:fromScene:</code></p> 似乎没有考虑坐标的不同原点
<p>试试这个:</p>
<pre><code>NSLog(@&#34;%f&#34;, node.position.y);
CGPoint test = ;
NSLog(@&#34;%f&#34;, test.y);
CGPoint test1 = ;
NSLog(@&#34;%f&#34;, test1.y);
</code></pre>
<p>这里其实是对<a href="https://forums.developer.apple.com/thread/7461" rel="noreferrer noopener nofollow">the problem</a>的描述</p>
<p>希望对你有帮助</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - SpriteKit坐标的转换,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31862285/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31862285/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - SpriteKit坐标的转换