MTK Android 套件精灵可以卸载吗?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MTK Android 套件精灵可以卸载吗?相关的知识,希望对你有一定的参考价值。

参考技术A 这个功能是金立手机的吧?这个功能是与电脑相互通信的。如果你嫌浪费空间,可以删除!手机与电脑相连接可以用别的软件连接或用WIFI连接。 参考技术B 可以的。可能会影响和电脑的了解。没有mtk平台的手机测试 参考技术C 这个是辅助安卓系统增强某些功能的软件,如果不常用就可以删除。 参考技术D 可以,先root手机就可以! 第5个回答  2013-12-07 好像可以 最好备份系统再刷

精灵套件:联系不工作

【中文标题】精灵套件:联系不工作【英文标题】:sprite kit : contact not working 【发布时间】:2015-06-16 12:50:48 【问题描述】:

我正在尝试做一个简单的游戏,这个问题首先发生我的桨可以接触球,但现在它不能这样做,并且 这段代码也应该给我消息或在模拟器中,但它没有显示任何想法?

import SpriteKit

class GameScene: SKScene , SKPhysicsContactDelegate

var istouchingpaddle = false

let ballcatagery:UInt32 = 0 * 1 << 0
let paddlecategary :UInt32 = 0 * 1 << 1


override func didMoveToView(view: SKView) 
    /* Setup your scene here */

    let border = SKPhysicsBody(edgeLoopFromRect: self.frame)

    border.friction = 0
    self.physicsBody = border
    self.physicsWorld.gravity = CGVectorMake(0,-9.8)
    self.physicsWorld.contactDelegate = self
    let ball = childNodeWithName ("ball") as SKSpriteNode
    ball.physicsBody?.applyImpulse(CGVectorMake(30, -30))
    ball.physicsBody?.allowsRotation = false
    ball.physicsBody?.restitution = 1

    ball.physicsBody?.linearDamping = 0
    ball.physicsBody?.angularDamping = 0



    ball.physicsBody!.categoryBitMask = ballcatagery
    let paddle = childNodeWithName("paddle") as SKSpriteNode
    paddle.physicsBody!.categoryBitMask = paddlecategary
    ball.physicsBody?.contactTestBitMask = paddlecategary






func didBeginContact(contact: SKPhysicsContact) 

    if contact.bodyA.categoryBitMask == ballcatagery && contact.bodyB.categoryBitMask == paddlecategary

            println("working ")
    



override func touchesBegan(touches: NSSet, withEvent event: UIEvent) 
    /* Called when a touch begins */
    var touch = touches.anyObject() as UITouch
    var location  = touch.locationInNode(self)
    if let body = self.physicsWorld.bodyAtPoint(location)
    if body.node!.name == "paddle" 

        istouchingpaddle = true
    
    




override func touchesMoved(touches: NSSet, withEvent event: UIEvent) 

    if istouchingpaddle
    var touch = touches.anyObject() as UITouch
    var location  = touch.locationInNode(self)
    var prevlocation = touch.previousLocationInNode(self)
    var paddle = childNodeWithName("paddle") as SKSpriteNode
    var position = paddle.position.x + (location.x - prevlocation.x)
    position = max(position,paddle.size.width/2)
    position = min(position, size.width - paddle.size.width/2)



    paddle.position = CGPoint(x: position, y: paddle.position.y)


            



override func touchesEnded(touches: NSSet, withEvent event: UIEvent) 
    istouchingpaddle = false

override func update(currentTime: CFTimeInterval) 
    /* Called before each frame is rendered */
 

【问题讨论】:

【参考方案1】:

如果我改变定义类别的方式,我可以用你的代码产生好的结果。尝试像这样设置类别:

let ballcatagery: UInt32 = 0x1 << 0 // Not that you have misspelled word "category", which can lead to errors if you expect somewhere a word "category" instead of your actual "categary". 
let paddlecategary : UInt32 = 0x1 << 1 

我可以将整个代码发布给您,但您应该对此感到满意。

【讨论】:

@DivyPatel 不客气 :) 请注意,0x1 与 0*1(0 乘以 1)不同。 0x1 是 1 的十六进制表示。

以上是关于MTK Android 套件精灵可以卸载吗?的主要内容,如果未能解决你的问题,请参考以下文章

MTK Android套件精灵是啥?对安卓有利吗?它是干啥的?

华为G610-T11中的MTK android套件精灵是啥?可以删的吗?

为啥精灵套件中的坐标系会翻转,我可以全局更改吗?

精灵套件目标 c 中的停止按钮

MTK Android O1平台预置apk

如何在 swift 和精灵套件中使用精灵表?