OGeek|极客世界-中国程序员成长平台

标题: ios - 在 Xcode SpriteKit 中,使用 Swift 向一个方向展开 SKSpritenode [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 15:30
标题: ios - 在 Xcode SpriteKit 中,使用 Swift 向一个方向展开 SKSpritenode

我想让 SKSpritenode 只向一个方向扩展,在这种情况下只向上扩展。

override func didMoveToView(view: SKView) {
    var rightlegs = SKSpriteNode()
    rightlegs.size = CGSize(width: 10, height: 50)
    rightlegs.color = SKColor.yellowColor()
    rightlegs.position = CGPointMake(self.frame.width / 2 + 20, self.frame.height / 2 - 40)
    self.addChild(rightlegs)


}

 override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
   /* Called when a touch begins */

所以.. 当我按下屏幕时,我希望高度扩大;然而,不是从两个方向。我该如何解决这个问题?感谢您的宝贵时间



Best Answer-推荐答案


您可以通过更改 anchorPoint 来做到这一点 Sprite 的属性为 CGPoint(x:0.5, y:0.0) (这将底部对齐 Sprite 的纹理)并使用 yScale 缩放 Sprite 的高度属性,像这样:

import SpriteKit

class GameScene: SKScene, SKPhysicsContactDelegate {

    let rightlegs = SKSpriteNode(color: .yellowColor(), size: CGSize(width: 10, height: 50))

    override func didMoveToView(view: SKView) {

        rightlegs.anchorPoint.y = 0.0

        rightlegs.position = CGPointMake(self.frame.width / 2 + 20, self.frame.height / 2 - 40)
        self.addChild(rightlegs)    
    }

    override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {

        //Without animation
        rightlegs.yScale += 0.2
    }
}

或者您可以使用一些 SKAction 缩放方法使其动画化:

override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {

   //With animation

   rightlegs.runAction(SKAction.scaleYTo(rightlegs.yScale + 0.2, duration: 0.2))
}

关于 anchorPoint 来自文档:

Defines the point in the sprite that corresponds to the node’s position.

You specify the value for this property in the unit coordinate space. The default value is (0.5,0.5), which means that the sprite is centered on its position.

anchorPoint 的基本作用是定义如何相对于节点的位置绘制纹理并影响节点的旋转和缩放...

Apple 的 Working with Sprites 中很好地解释了 anchor 的工作原理及其作用。文档部分。

关于ios - 在 Xcode SpriteKit 中,使用 Swift 向一个方向展开 SKSpritenode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36218198/






欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://jike.in/) Powered by Discuz! X3.4