自定义SKPhysicsJoint子类



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

是否有办法让我子类SKPhysicsJoint来提供我自己的力计算?或者我必须在update(..)中手动实现这一点?

许多谢谢,

您必须"在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框架中获得类的实例,并且你不能子类化那些类。

相关内容

  • 没有找到相关文章

最新更新