AABB
AlignmentBehavior
ArriveBehavior
AStar
BFS
BoundingSphere
BVH
BVHNode
Cell
CellSpacePartitioning
CohesionBehavior
CompositeGoal
ConvexHull
Corridor
CostTable
DFS
Dijkstra
Edge
EntityManager
EvadeBehavior
EventDispatcher
Behavior
FollowPathBehavior
FuzzyAND
FuzzyCompositeTerm
FuzzyFAIRLY
FuzzyModule
FuzzyOR
FuzzyRule
FuzzySet
FuzzyTerm
FuzzyVariable
FuzzyVERY
GameEntity
Goal
GoalEvaluator
Graph
GraphUtils
HalfEdge
HeuristicPolicyDijkstra
HeuristicPolicyEuclid
HeuristicPolicyEuclidSquared
HeuristicPolicyManhattan
InterposeBehavior
LeftSCurveFuzzySet
LeftShoulderFuzzySet
LineSegment
Logger
MathUtils
Matrix3
Matrix4
MemoryRecord
MemorySystem
MeshGeometry
MessageDispatcher
MovingEntity
NavEdge
NavMesh
NavMeshLoader
NavNode
Node
NormalDistFuzzySet
OBB
ObstacleAvoidanceBehavior
OffsetPursuitBehavior
OnPathBehavior
Path
Plane
Polygon
Polyhedron
PriorityQueue
PursuitBehavior
Quaternion
Ray
RectangleTriggerRegion
Regular
RightSCurveFuzzySet
RightShoulderFuzzySet
SAT
SeekBehavior
SeparationBehavior
SingletonFuzzySet
Smoother
SphericalTriggerRegion
State
StateMachine
SteeringBehavior
SteeringManager
Task
TaskQueue
Telegram
Think
Time
TriangularFuzzySet
Trigger
TriggerRegion
Vector3
Vehicle
Version
WanderBehavior

fromJSON

fromJSON 是 Yuka.js 库中的一个静态方法,使用它可以从一个 JSON 字符串或对象创建一个新的 Node 实例。

语法

Node.fromJSON(json: object|string): Node

参数

  • json:要从中创建 Node 的 JSON 字符串或对象。

返回值

  • 返回一个新的 Node 实例。

示例

使用 JSON 对象创建 Node

以下示例从一个 JSON 对象创建一个新的 Node 实例:

const json = {
  uuid: 'e4138b34-83e5-4a4a-8d4e-5c5a5f5b5d0e',
  position: { x: 10, y: 5, z: 2 },
  orientation: [0, 1, 0, 0]
};

const node = Node.fromJSON(json);
console.log(node);

输出:

Node {
  uuid: 'e4138b34-83e5-4a4a-8d4e-5c5a5f5b5d0e',
  position: Vector3 { x: 10, y: 5, z: 2 },
  orientation: Quaternion { x: 0, y: 1, z: 0, w: 0 },
  children: [],
  isPaused: false
}

使用 JSON 字符串创建 Node

以下示例从一个 JSON 字符串创建一个新的 Node 实例:

const jsonString = '{"uuid":"e4138b34-83e5-4a4a-8d4e-5c5a5f5b5d0e","position":{"x":10,"y":5,"z":2},"orientation":[0,1,0,0]}';

const node = Node.fromJSON(jsonString);
console.log(node);

输出:

Node {
  uuid: 'e4138b34-83e5-4a4a-8d4e-5c5a5f5b5d0e',
  position: Vector3 { x: 10, y: 5, z: 2 },
  orientation: Quaternion { x: 0, y: 1, z: 0, w: 0 },
  children: [],
  isPaused: false
}

异常

如果无法从提供的 JSON 对象或字符串创建一个有效的 Node 实例,则抛出一个错误。

注意事项

  • json 参数必须是一个包含 uuidpositionorientation 属性的对象,或者是一个符合这些属性的 JSON 字符串。

  • 如果提供的 JSON 数据不包含任何子节点,如果需要添加子节点,可以使用 Node 的 addChild() 方法。

  • fromJSON 方法创建的 Node 实例默认是没有暂停的,可以通过 Node 的 pause()resume() 方法来暂停和恢复 Node 的更新功能。