mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 10:43:45 +02:00
Reinstate avatar script type tag
This commit is contained in:
parent
74edea8034
commit
53b5a599b1
1 changed files with 10 additions and 0 deletions
|
@ -107,6 +107,9 @@ exports.handlers = {
|
||||||
if (e.doclet.hifiClientEntity) {
|
if (e.doclet.hifiClientEntity) {
|
||||||
rows.push("Client Entity Scripts");
|
rows.push("Client Entity Scripts");
|
||||||
}
|
}
|
||||||
|
if (e.doclet.hifiAvatar) {
|
||||||
|
rows.push("Avatar Scripts");
|
||||||
|
}
|
||||||
if (e.doclet.hifiServerEntity) {
|
if (e.doclet.hifiServerEntity) {
|
||||||
rows.push("Server Entity Scripts");
|
rows.push("Server Entity Scripts");
|
||||||
}
|
}
|
||||||
|
@ -155,6 +158,13 @@ exports.defineTags = function (dictionary) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// @hifi-avatar-script
|
||||||
|
dictionary.defineTag("hifi-avatar", {
|
||||||
|
onTagged: function (doclet, tag) {
|
||||||
|
doclet.hifiAvatar = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// @hifi-client-entity
|
// @hifi-client-entity
|
||||||
dictionary.defineTag("hifi-client-entity", {
|
dictionary.defineTag("hifi-client-entity", {
|
||||||
onTagged: function (doclet, tag) {
|
onTagged: function (doclet, tag) {
|
||||||
|
|
Loading…
Reference in a new issue