Remove 3D off label stuff

This commit is contained in:
Vortrex
2021-04-04 23:16:39 -05:00
parent a61c85d869
commit f7caf4cba5

View File

@@ -32,36 +32,36 @@ let propertyLabelNameOffset = 18;
// ===========================================================================
function init3DLabelScript() {
logToConsole(LOG_DEBUG, "[Asshat.3DLabel]: Initializing 3D label script ...");
propertyLabelNameFont = init3DLabelPropertyNameFont();
propertyLabelLockedFont = init3DLabelPropertyLockedFont();
jobNameLabelFont = init3DLabelJobNameFont();
jobHelpLabelFont = init3DLabelJobHelpFont();
logToConsole(LOG_DEBUG, "[Asshat.3DLabel]: 3D label script initialized!");
function initLabelScript() {
logToConsole(LOG_DEBUG, "[Asshat.Label]: Initializing label script ...");
propertyLabelNameFont = initLabelPropertyNameFont();
propertyLabelLockedFont = initLabelPropertyLockedFont();
jobNameLabelFont = initLabelJobNameFont();
jobHelpLabelFont = initLabelJobHelpFont();
logToConsole(LOG_DEBUG, "[Asshat.Label]: Label script initialized!");
}
// ===========================================================================
function init3DLabelPropertyNameFont() {
function initLabelPropertyNameFont() {
return lucasFont.createDefaultFont(16.0, "Roboto", "Regular");
}
// ===========================================================================
function init3DLabelPropertyLockedFont() {
function initLabelPropertyLockedFont() {
return lucasFont.createDefaultFont(12.0, "Roboto", "Light");
}
// ===========================================================================
function init3DLabelJobNameFont() {
function initLabelJobNameFont() {
return lucasFont.createDefaultFont(16.0, "Roboto", "Regular");
}
// ===========================================================================
function init3DLabelJobHelpFont() {
function initLabelJobHelpFont() {
return lucasFont.createDefaultFont(10.0, "Roboto", "Light");
}