底层通用函数


函数 Function

函数 Function说明 Description 备注 Note
log(obj)

在控制台打印对应内容 Print contents to the console

obj(any) 要打印的内容 the contents that printed to console

rand(s,e)

选取s,到e之间的随机数 Select the random number between s and e

s(Number)起始值 initial value

e(Number) 终止值 end value

取值范围Range:[s,e)
setWindowStatus(type)

设置窗口状态 Set window state

type(Number) 为0设置为窗口,为1设置为全屏 Set 0 as window and 1 as full screen

gameClose() 关闭游戏 Close the game
IsPC()

是否运行在PC上 Run on PC or not

返回值bool Return bool

部分情况,如Web和PC端起始基本是一致的,但是Web又有可能是在手机上运行的,所以采用了这样的函数做复合判定