DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ ToString()

proto string vector::ToString ( bool beautify = true)
private

Vector to string.

Аргументы
beautifyIf true verbose vector in more human readable form "<1, 1, 1>" instead of simple form "1 1 1"
Возвращает
string Converted vector as parsed string
vector v = "1 0 1";
Print( v.ToString() );
Print( v.ToString(false) );
>> '<1, 0, 1>'
>> '1 0 1'
proto string ToString(bool beautify=true)
Vector to string.
Определения EnConvert.c:106
proto void Print(void var)
Prints content of variable to console/log.

Используется в PluginConfigHandler::CustomLocationsAdd(), DbgShowBoneName(), SceneObject::GetPositionAsString(), ScriptConsoleGeneralTab::OnItemSelected(), PluginBase::PlayerTeleportedLog(), ScriptConsoleEnfScriptTab::PrintS(), UIScriptedMenu::Refresh(), UIScriptedMenu::SetCameraData(), PluginConfigHandler::SetItemDebugPos(), DebugMonitor::SetPosition(), UIScriptedMenu::SetPosition(), HudDebugWinBase::Update() и ScriptConsoleGeneralTab::Update().