- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 SKTextureAtlas,其中包含 7 帧具有透明背景的动画 Sprite 。
我已经能够使用 map 集中的单个帧作为物理体的边界,但我想知道如果可能的话,如何让物理体更新 map 集中每个帧的轮廓.
这里我有使用名为“Run0”的框架的物理体,并且它被正确应用。我只是想看看是否可能,或者让物理体使用图集中从“Run0”到“Run7”的每一帧是否完全不切实际。
Image of physics body with the outline of "Run0"
这是我正在编写的代码:
import SpriteKit
类游戏场景:SKScene {
let dogSpriteNode = SKSpriteNode(imageNamed: "Run0")
var dogFrames = [SKTexture]()
override func didMove(to view: SKView) {
physicsWorld.gravity = CGVector(dx: 0, dy: -9.8)
physicsBody = SKPhysicsBody(edgeLoopFrom: frame)
dogSpriteNode.setScale(0.1)
dogSpriteNode.position = CGPoint(x: frame.midX, y: frame.midY)
addChild(dogSpriteNode)
let textureAtlas = SKTextureAtlas(named: "Dog Frames")
for index in 0..<textureAtlas.textureNames.count {
let textureName = "Run" + String(index)
dogFrames.append(textureAtlas.textureNamed(textureName))
}
dogSpriteNode.physicsBody = SKPhysicsBody(
texture: textureAtlas.textureNamed("Run0"),
alphaThreshold: 0.5,
size: dogSpriteNode.frame.size)
}
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
dogSpriteNode.run(SKAction.group([SKAction.repeatForever(SKAction.animate(with: dogFrames, timePerFrame: 0.1))]))
dogSpriteNode.run(SKAction.applyImpulse(CGVector(dx: 0, dy: 1000), duration: 0.1))
}
}
最佳答案
实现此目的的一种方法是使用自定义 SKAction
:
extension SKAction {
public class func animateTexturesWithPhysics(_ frames: [(texture: SKTexture, duration: TimeInterval)], repeatForever: Bool=true) -> SKAction {
var actions: [SKAction] = []
for frame in frames {
// define a custom action for each frame
let customAction = SKAction.customAction(withDuration: frame.duration) { node, _ in
// if the action target is a sprite node, apply the texture & physics
if node is SKSpriteNode {
let setTextureGroup = SKAction.group([
SKAction.setTexture(frame.texture, resize: false),
SKAction.wait(forDuration: frame.duration),
SKAction.run {
node.physicsBody = SKPhysicsBody(texture: frame.texture, alphaThreshold: 0.5, size: frame.texture.size())
// add physics attributes here
}
])
node.run(setTextureGroup)
}
}
actions.append(customAction)
}
// add the repeating action
if (repeatForever == true) {
return SKAction.repeatForever(SKAction.sequence(actions))
}
return SKAction.sequence(actions)
}
}
要实现它,您需要创建一个帧+持续时间的数组并将操作应用于 Sprite :
typealias Frame = (texture: SKTexture, duration: TimeInterval)
let timePerFrame: TimeInterval = 0.1
let dogFrames: [Frame] = dogTextures.map {
return ($0, timePerFrame)
}
dogSpriteNode = SKSpriteNode(texture: dogFrames.first)
let dogAnimationAction = SKAction.animateTexturesWithPhysics(dogFrames)
dogSpriteNode.run(dogAnimationAction)
关于ios - 如何从 SKTextureAtlas 制作 SKPhysicsBody 纹理的动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54068436/
每当我创建两个变量并将其定义为 SKTextureAtlas 类型时,它们都会互相重写。这是我最初创建的两个 SKTextureAtlas class GameScene: SKScene {
我做了一个快速项目来了解 SpriteKit 如何从内存中释放 map 集。每次点击屏幕时,都会创建一个图集并将其加载到内存中。对图集的唯一引用是您在下面的代码中看到的内容,我认为由于 var 位于非
我在使用多个 map 集时遇到问题。 例如,我有 main_menu.atlas 和 game.atlas 以及这些场景的图像。在主菜单场景出现之前,我为它准备了图集([SKTextureAtlas
我正在研究处理角色动画的类(class)。动画将具有用户在创建角色时选择的不同肤色。每个肤色的图集具有相同的名称,但存储在不同名称的文件夹中,如下所示: 这是在 xcassets 文件夹中 这应该让我
如果一个 iOS 项目有一个 UIImages 字典,如何在运行时从字典图像正确创建 SKTextureAtlas?我无法实现这个目标,尽管 Apple 的 SKTextureAtlas 类引用在声明
我将一个名为“movementAnim”的文件夹拖到 Image assets 文件夹中,该文件夹用于创建纹理图集(来 self 从 WWDC 2015 What's New in SpriteKit
我在获取免费的纹理图集时遇到问题。目前我有一个 SpriteKit 游戏,玩家可以在其中改变他的角色。现在我在这样的全局共享实例中拥有 map 集。 let char0Atlas: SKTexture
我在 SpriteKit 上开发了一个游戏,每个场景都有多个场景 最少来自 3 个 TextureAtlas 每个 TextureAtlas 中图像的最大大小为 60K 我的游戏因内存问题而崩溃 我在
类似于 WWDC 的 SpriteKit 特色游戏“冒险”,我尝试通过图 block 加载我的背景图像。我创建了一个纹理图集,其中包含 6,300 个“图 block ”,每个“图 block ”大小
在我的项目中,纹理 是通过 PaintCode ( paint-code ) 提供的方法按程序生成的。 然后我创建一个 SKTextureAtlas来自字典 UIImage通过这些方法生成: myAt
我已经阅读了此处关于此主题的所有帖子,但似乎都没有回答我的问题。 我的问题是 SKTexture/SKTextureAtlas 何时加载到内存中? 从我读到的内容来看,您需要对使用 [SKTextur
我正在努力通过 Apportable 将我的 SpriteKit 制作的 Objective-C 应用程序转换为 Android 应用程序。在“可分配负载”方面,我遇到了 SKTextureAtlas
我不确定我是否做错了,或者“atlasWithDictionary ”方法是否有问题。 我是这样用的: NSArray* imageNames = @[ @"image1", @"image2", @
我制作了一个使用许多纹理图集的游戏。我目前在 asset.xcassets 文件夹中使用 SpriteAtlases,在测试低于 iOS 10 的设备之前该效果非常好。 在 iOS 9 的任何设备上运
有没有人能够让 xcode 6 中的模拟器使用 atlas 中的 3x 图像?每当我将它们加载到 SKTextureAtlas 中时,它都会使用 2x 图像。 如果我将 test@2x.png 和 t
我似乎在使用 SKTextureAtlas 和纹理的最近邻过滤时遇到问题。当我在没有 SKTextureAtlas 的情况下使用最近邻过滤时它工作正常,但是当我使用 SKTextureAtlas 时一
我正在开发 SWIFT3/SpriteKit 屏幕保护程序,我的屏幕保护程序可以正常工作,但我无法加载我的纹理,因为当我执行以下操作时: // load texture atlas let textu
我需要带有“trueName”的纹理来加载到我的 myImageViewOutlet.image 中。我得到的结果是将整个图集渲染到其中。我的代码如下 let myTextureAtlas = SKT
我有一个 SKTextureAtlas,其中包含 7 帧具有透明背景的动画 Sprite 。 我已经能够使用 map 集中的单个帧作为物理体的边界,但我想知道如果可能的话,如何让物理体更新 map 集
通过为我所有的游戏动画预先设置强大的 SKAction 是 Sprite Kit 缓存的实际图像数据以供将来使用。我想了解的是,如果我将所有动画设置为保留的 SKAction 是否还有必要预加载它们最
我是一名优秀的程序员,十分优秀!