如何在 Swift Playgrounds 中使用带有纹理的 SKNode 设置 SKScene?

Posted

技术标签:

【中文标题】如何在 Swift Playgrounds 中使用带有纹理的 SKNode 设置 SKScene?【英文标题】:How to set up an SKScene with an SKNode with a texture in Swift Playgrounds? 【发布时间】:2017-03-13 15:50:14 【问题描述】:

我尝试将 SpriteKit 项目中的模板代码复制到 Playground 中,但是当我呈现场景时,我得到的只是一个灰屏。我是否需要创建一个 SKScene,如果需要,我如何将它分配给我正在使用的场景类。

以下是我创建和呈现场景的代码:

 @objc func goToGameScene()

    print("GameView Loaded")

 sceneView = SKView(frame: CGRect(x: 0, y: 0, width: 666, height: 500))



sceneView.backgroundColor = UIColor.black

PlaygroundPage.current.liveView = sceneView

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

        // Present the scene
        view.presentScene(scene)
    

    view.ignoresSiblingOrder = true



这是我的 SKScene 类,文件名为 GameScene.swift。

import Foundation
import SpriteKit
import GameplayKit

class GameScene: SKScene, SKPhysicsContactDelegate 
var bg = SKSpriteNode()
func didBegin(_ contact: SKPhysicsContact) 

override func didMove(to view: SKView) 
    self.physicsWorld.contactDelegate = self
    let bgTexture = SKTexture(image: UIImage(named: "MainScreenBackground.png")!)
    let moveBGAnimation = SKAction.move(by: CGVector(dx:-bgTexture.size().width, dy:0), duration: 11)
    let shiftBackground = SKAction.move(by: CGVector(dx: bgTexture.size().width, dy:0), duration: 0)
    let repeatAnimationBg = SKAction.repeatForever(SKAction.sequence([moveBGAnimation, shiftBackground]))
    var q = 0
    while(q < 3)
        bg = SKSpriteNode(texture: bgTexture)
        bg.position = CGPoint(x:  bgTexture.size().width * CGFloat(q), y: self.frame.midY)
        bg.size.height = self.frame.height
        bg.run(repeatAnimationBg)
        self.addChild(bg)
        q+=1
        bg.zPosition = -1
    


override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) 

override func update(_ currentTime: TimeInterval) 


【问题讨论】:

【参考方案1】:

假设您已将MainScreenBackground.png 图像拖放到Assets.xcassets 文件夹中,您可以使用下面的代码将图像作为SKSpriteNode 添加到您的场景中。

override func didMove(to view: SKView) 
    self.physicsWorld.contactDelegate = self
    let bgTexture = SKSpriteNode(imageNamed: "MainScreenBackground")
    self.addChild(bgTexture)
    ...

【讨论】:

以上是关于如何在 Swift Playgrounds 中使用带有纹理的 SKNode 设置 SKScene?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Swift Playgrounds 中睡觉并获取最新的异步值?

Swift Playgrounds 是如何工作的?

Swift 中 Playgrounds 的用途是啥?

如何在 iPad 上的 Swift Playgrounds 中打印到控制台?

Apple 的 iPad 版 Swift Playgrounds 应用程序如何执行代码?

如何在 iPad 上让 Swift Playgrounds 无边界?