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

该函数是 GoalEvaluator 类的静态方法之一,旨在将 JSON 格式的字符串转换为 GoalEvaluator 对象。

语法

GoalEvaluator.fromJSON(jsonString)

参数

  • jsonString:一个字符串,表示 JSON 格式的 GoalEvaluator 对象。

返回值

返回一个 GoalEvaluator 对象。

示例

const jsonString = `{"type":"CompositeGoalEvaluator","subgoals":[{"type":"AttackEnemyGoalEvaluator","weight":0.7},{"type":"CollectResourceGoalEvaluator","weight":0.3}]}`;

const goalEvaluator = GoalEvaluator.fromJSON(jsonString);

在上述示例中,jsonString 是一个 JSON 格式的字符串,它表示一个复合型目标评估器,其中包含了两个子目标评估器。通过调用 GoalEvaluator.fromJSON 方法,我们将其转换为一个 GoalEvaluator 对象。

异常

如果传入的参数不是一个有效的 JSON 字符串,该函数将抛出一个 SyntaxError 异常。

附注

该方法用于将 GoalEvaluator 对象从网络、本地存储、甚至其他语言的数据格式中转换为 JavaScript 对象。在代码的执行过程中,我们可能需要从服务器获取特定的对象、将对象存储在本地或者在多个系统之间传递数据,这时候就需要将对象转换为可传输或可存储的格式。 GoalEvaluator.fromJSON 可以将符合 JSON 格式的字符串转换为 JavaScript 对象,使得我们能够以统一的格式处理数据。