创作者中心
中心
学习
商店
人才
论坛
路线图
引擎
/
参考
/
库
中文(简体)
反馈
debug
显示已弃用
*
此内容使用人工智能(Beta)翻译,可能包含错误。若要查看英文页面,请点按
此处
。
为Roblox的代码调试提供几个基本功能。与Lua的
debug
库存在Lua的默认版本不同,这个版本已被重新沙箱。
概要
职能
traceback
(
message :
string
,
level :
number
)
:
string
traceback
(
thread :
coroutine
,
message :
string
,
level :
number
)
:
string
info
(
level :
number
,
options :
string
)
:
Tuple
info
(
function :
function
,
options :
string
)
:
Tuple
info
(
thread :
coroutine
,
level :
number
,
options :
string
)
:
Tuple
profilebegin
(
label :
string
)
:
void
profileend
()
:
void
getmemorycategory
()
:
string
setmemorycategory
(
tag :
string
)
:
string
resetmemorycategory
()
:
void
dumpcodesize
()
:
void
职能
traceback
string
参数
message
:
string
level
:
number
默认值:1
返回
string
traceback
string
参数
thread
:
coroutine
message
:
string
level
:
number
默认值:1
返回
string
info
Tuple
参数
level
:
number
options
:
string
返回
Tuple
info
Tuple
参数
function
:
function
options
:
string
返回
Tuple
info
Tuple
参数
thread
:
coroutine
level
:
number
options
:
string
返回
Tuple
profilebegin
void
参数
label
:
string
返回
void
profileend
void
返回
void
getmemorycategory
string
返回
string
setmemorycategory
string
参数
tag
:
string
返回
string
resetmemorycategory
void
返回
void
dumpcodesize
void
返回
void