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

getTimescale

该函数用于获取指定时间的时间刻度。

语法

Yuka.Time.getTimescale(time, timescale)

参数

  • time:需要获取时间刻度的时间,可以是Date对象或时间戳(毫秒)。
  • timescale:表示时间刻度的字符串,默认值为'second'。可选值包括:'second''minute''hour''day''month''year'

返回值

该函数返回一个具有startend属性的对象,表示指定时间的时间刻度范围。

示例

// 获取当前时间的月份时间刻度范围
const now = new Date();
const timescale = Yuka.Time.getTimescale(now, 'month');
console.log(timescale.start, timescale.end); // 输出本月的第一天和最后一天的日期

实现思路

  1. 首先判断time参数的类型,如果是时间戳,则将其转换为Date对象。
  2. 根据timescale参数的值,获取指定时间所在时间刻度范围的开始时间和结束时间。
  3. 返回该时间刻度范围的起始时间和结束时间,并存储在对象中返回。

注意事项

  • 时间刻度范围的开始时间和结束时间都是UTC时间。
  • 时间刻度范围的计算是基于当前时区的,因此需要注意时区的影响。
  • 该函数只能计算从1970年1月1日0时0分0秒(UTC)以来的时间刻度范围,不能计算更早的时间范围。

参考链接