自定义 SKPhysicsJoint 子类
Custom SKPhysicsJoint Subclass
我目前正在使用 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 框架中获取 类 的实例,并且您不能将那些 类.
子类化
我目前正在使用 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 框架中获取 类 的实例,并且您不能将那些 类.
子类化