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格式的版本信息转换为Version对象。

语法

Version.fromJSON(json: string) => Version

参数

  • json:要转换的JSON字符串。

返回值

返回一个新的Version对象,该对象包含了JSON字符串所表示的版本信息。

示例

const json = '{"major": 1, "minor": 2, "patch": 3}';
const version = Version.fromJSON(json);

console.log(version.major); // 1
console.log(version.minor); // 2
console.log(version.patch); // 3

异常

如果给定的JSON字符串不符合预期的格式,将抛出异常。

例外情况

下面是一些例外情况:

  • 如果 json 参数为 nullundefined,将抛出异常。
  • 如果 json 参数不是一个字符串,将抛出异常。
  • 如果 json 参数表示的版本信息不包含 majorminorpatch 字段,将抛出异常。
  • 如果 json 参数中的 majorminorpatch 值不是数字,将抛出异常。

参考文献