Pular para o conteúdo principal

Delete3DTextLabel

descrição

Apaga um texto 3D criado com Create3DTextLabel.

NomeDescrição
Text3D:textidO ID do texto 3D a apagar.

retorno

Retorna true se o texto 3D foi apagado, caso contrário false.

exemplo

new Text3D:gMyLabel;

public OnGameModeInit()
{
gMyLabel = Create3DTextLabel("Estou nas coordenadas:\n30.0, 40.0, 50.0", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, false);
return 1;
}

// Mais tarde
Delete3DTextLabel(gMyLabel);

funções relacionadas