Corentin Cailleaud
commited on
Commit
•
aa52e2d
1
Parent(s):
3d1fc88
update
Browse files
cubzh.lua
CHANGED
@@ -375,12 +375,12 @@ if IsClient then
|
|
375 |
})
|
376 |
|
377 |
local text = Text()
|
378 |
-
text.Text = string.upper(string.sub(name, 4, 4)) .. string.sub(name, 5, #name)
|
379 |
text:SetParent(NPC.object)
|
380 |
text.Type = TextType.Screen
|
381 |
text.IsUnlit = true
|
382 |
text.LocalPosition.Y = 36
|
383 |
-
text.FontSize =
|
384 |
text.Font = Font.Noto
|
385 |
|
386 |
NPC.object.OnCollisionBegin = function(self, other)
|
|
|
375 |
})
|
376 |
|
377 |
local text = Text()
|
378 |
+
text.Text = " " .. string.upper(string.sub(name, 4, 4)) .. string.sub(name, 5, #name) .. " "
|
379 |
text:SetParent(NPC.object)
|
380 |
text.Type = TextType.Screen
|
381 |
text.IsUnlit = true
|
382 |
text.LocalPosition.Y = 36
|
383 |
+
text.FontSize = 30
|
384 |
text.Font = Font.Noto
|
385 |
|
386 |
NPC.object.OnCollisionBegin = function(self, other)
|