我目前正与SKPhysicsJointSpring
合作,将多个节点连接在一起。我希望能够使用对数公式来指定力,而不是胡克定律。
有没有办法让我继承SKPhysicsJoint
来提供我自己的力量计算?或者我必须在update(..)
?
非常感谢,
答案 0 :(得分:1)
您必须“以update
”手动或其他方式实施它。 SKPhysicsJoint
及其明显的子类甚至都不是真实的。尝试打印一个:
:; xcrun swift -framework SpriteKit
"crashlog" and "save_crashlog" command installed, use the "--help" option for detailed help
Welcome to Apple Swift version 2.0 (700.0.52.1 700.0.65). Type :help for assistance.
1> import SpriteKit
2> print(SKPhysicsJoint())
<PKPhysicsJoint: 0x1029006b0>
3> print(SKPhysicsJointSpring())
<PKPhysicsJointDistance: 0x102800530>
您实际上是从私有PhysicsKit框架获取类的实例,并且您不能将这些类子类化。