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

◆ DbgShowBoneName()

void DbgShowBoneName ( DayZPlayer pPlayer)
protected

См. определение в файле PluginDayzPlayerDebug.c строка 639

640 {
641 int boneIndex = pPlayer.GetBoneIndexByName("Head");
642
643 // vector pos = pPlayer.GetBonePositionMS(boneIndex);
644 vector tm[4];
645
646 pPlayer.GetBoneTransformMS(boneIndex, tm);
647
648
649
650 string a = "Bone index:";
651 a += boneIndex.ToString();
652 a += ",";
653 a += tm.ToString();
654 Print(a);
655 }
proto string ToString(bool beautify=true)
Vector to string.
Определения EnConvert.c:106
proto void Print(void var)
Prints content of variable to console/log.

Перекрестные ссылки Print() и vector::ToString().