example
example

资源 3D 文本创建者资源

Yann

站长
管理成员
GTAOS管理组
认证卖家
认证用户
本 月 名 人 榜 最 佳
1725245586669.png

因此,此资源允许您使用简单的导出下载

导出:
lua:
--[[ Color can be a hex or a table with rgba values
    "#ffffff" or {255, 255, 255} these can also have Alpha values (How see thru it is) by adding a fourth value so
    "#ffffff0C" or {255, 255, 255, 100}
--  Multi line: add \n to your text to have multiple lines
-- Create a text (server and client)
local text = exports.3dTextCreator:crete3dText(label, x, y, z, color, dist, scale, font)
-- Update (server and client) if you dont want to update something set it as nil
exports.3dTextCreator:update3dText(text, label, x, y, z, color, dist, scale, font)
-- Delete (server and client)
exports.3dTextCreator:delete3dText(text)
 
顶部