gpt4 book ai didi

ios - 两个物体之间的碰撞需要帮助

转载 作者:行者123 更新时间:2023-11-30 14:19:19 25 4
gpt4 key购买 nike

在此之前,我是一名 iOS 和编码初学者。我在下面的代码中使用 Sprite Kit 和 swift 。我无法理解 SKPhysicsContactDelegate 的工作原理。在下面的代码中,我有两个对象“Ball”和“whiteBall”,所以我想做的是每次“Ball”与“whitewall”碰撞时计数+1。我不知道该怎么做。请帮忙!谢谢!

class Game: SKScene, SKPhysicsContactDelegate {

let Ball = SKSpriteNode(imageNamed: "Red.png")
var QuitOption = SKLabelNode()
var ScoreLabel = SKLabelNode()
var timesecond = Int(60)
var locked = false
var loseOption = SKLabelNode()
var scorePoints = SKLabelNode()
var score = Int()
let whiteBall = SKSpriteNode(imageNamed: "whiteDot")


struct PhysicsCategory {
static let whiteBall: UInt32 = 1 << 0
static let Ball: UInt32 = 1 << 1
}


override func didMoveToView(view: SKView) {


backgroundColor = SKColor.whiteColor() // background for the display

self.physicsWorld.gravity = CGVectorMake(0, -9.8)
self.physicsWorld.contactDelegate = self

let SceneBody = SKPhysicsBody(edgeLoopFromRect: self.frame)
SceneBody.friction = 0
self.physicsBody = SceneBody

scorePoints = SKLabelNode(fontNamed: "Noteworthy-Light")
scorePoints.text = "0"
scorePoints.fontColor = SKColor.darkGrayColor()
scorePoints.fontSize = 35
scorePoints.position = CGPoint(x: self.frame.size.width/2, y: self.frame.size.height*1 - 120)
scorePoints.hidden = true
scorePoints.name = "Points"

addChild(scorePoints)

Ball.size = CGSize(width: 82, height: 82)
Ball.position = CGPoint(x: self.frame.size.width/2, y: self.frame.size.height*0.1 - 60)
Ball.physicsBody = SKPhysicsBody(circleOfRadius: 42)
Ball.physicsBody?.affectedByGravity = true
Ball.physicsBody?.density = 10
Ball.physicsBody?.restitution = 0.1
Ball.physicsBody?.linearDamping = 0
Ball.name = "Ball"
Ball.physicsBody?.usesPreciseCollisionDetection = true
Ball.physicsBody?.categoryBitMask = PhysicsCategory.whiteBall
Ball.physicsBody?.contactTestBitMask = PhysicsCategory.Ball
Ball.physicsBody?.collisionBitMask = PhysicsCategory.Ball

self.addChild(Ball)

QuitOption.text = "Quit"
QuitOption.fontName = "Noteworthy-Light"
QuitOption.fontColor = SKColor.purpleColor()
QuitOption.fontSize = 35
QuitOption.position = CGPoint(x: self.frame.size.width/2 - 160, y: self.frame.size.height*1 - 110)
QuitOption.name = "Quit"

addChild(QuitOption)

ScoreLabel = SKLabelNode(fontNamed: "Noteworthy-Light")
ScoreLabel.fontColor = SKColor.redColor()
ScoreLabel.fontSize = 35 // The + will move it to the right side and - to the left side for more accuracy.
ScoreLabel.position = CGPoint(x: self.frame.size.width/2 + 160, y: self.frame.size.height/1 - 115) // position of ScoreLabelNode
ScoreLabel.name = "Score+"
ScoreLabel.hidden = false

self.addChild(ScoreLabel)

whiteBall.size = CGSize(width: 55, height: 55)
whiteBall.position = CGPoint(x: self.frame.size.width/2, y: self.frame.size.height*0.8 - 30)
whiteBall.name = "whiteBall"
whiteBall.physicsBody = SKPhysicsBody(circleOfRadius: 17)
whiteBall.physicsBody?.dynamic = false
whiteBall.physicsBody?.restitution = 0.1
whiteBall.physicsBody?.usesPreciseCollisionDetection = true
whiteBall.physicsBody?.categoryBitMask = PhysicsCategory.Ball
whiteBall.physicsBody?.contactTestBitMask = PhysicsCategory.whiteBall
whiteBall.physicsBody?.collisionBitMask = PhysicsCategory.whiteBall

self.addChild(whiteBall)


}

// Making the ball jump after user touches ball

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


var touch = touches.first as! UITouch
var location = touch.locationInNode(self)
var node = self.nodeAtPoint(location)


if (node.name == "Quit"){

let myScene = GameScene(size: self.size)
myScene.scaleMode = scaleMode
let reveal = SKTransition.fadeWithDuration(1)
self.view?.presentScene(myScene, transition: reveal)

}

if (node.name == "Ball"){

for touch: AnyObject in touches {


Ball.physicsBody?.allowsRotation = true
Ball.physicsBody?.velocity = CGVectorMake(0, 0)
Ball.physicsBody?.applyImpulse(CGVectorMake(0, 650))

}

}

if(!self.locked){

self.locked = true

var actionrun = SKAction.waitForDuration(0.5)

var actionwait = SKAction.runBlock({

self.timesecond--

if self.timesecond == 60 {self.timesecond = 0}

self.ScoreLabel.text = "\(self.timesecond)"

if (self.timesecond == 0){

let myScene = WT(size: self.size)
myScene.scaleMode = self.scaleMode
let reveal = SKTransition.fadeWithDuration(1)
self.view?.presentScene(myScene, transition: reveal)

}
})

let loopAction = SKAction.repeatAction(SKAction.sequence([actionwait, actionrun]), count: 60)

ScoreLabel.runAction(loopAction, withKey: "scoreAction")


}

}

func didBeginContact(contact: SKPhysicsContact) {


}


}

最佳答案

试试这个

func didBeginContact(contact: SKPhysicsContact) {

let collision = contact.bodyA.categoryBitMask | contact.bodyB.categoryBitMask

if collision == PhysicsCategory.Ball | PhysicsCategory.whiteBall {

score++

scoreLabel.text = "Score: \(score)"

}
}

关于ios - 两个物体之间的碰撞需要帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30688159/

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