自定义SKPhysicsJoint子类

时间:2015-08-14 20:50:33

标签: swift sprite-kit skphysicsbody skphysicsjoint

我目前正与SKPhysicsJointSpring合作,将多个节点连接在一起。我希望能够使用对数公式来指定力,而不是胡克定律。

有没有办法让我继承SKPhysicsJoint来提供我自己的力量计算?或者我必须在update(..)

中手动实现此功能

非常感谢,

1 个答案:

答案 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框架获取类的实例,并且您不能将这些类子类化。