3DCoatScripting  4.8.31β
С помощью скриптинга можно управлять возможностями Коута и расширять его функционал.
Класс coat::scripto::DebugLog

Access to debugging like text-output. Подробнее...

Открытые члены

template<class T >
DebugLogoperator+= (const T &)
 Print the values and objects to the file log.txt. Подробнее...
 
DebugLogclear ()
 Clear the file log.txt. Подробнее...
 

Подробное описание

Access to debugging like text-output.

debug-log.png

Use this two lines for access to DebugLog:

Debug dbg;
DebugLog log = dbg.log();
Начиная с
4.5.32

Методы

template<class T >
DebugLog & coat::scripto::DebugLog::operator+= ( const T &  v)

Print the values and objects to the file log.txt.

log += 4.5;
log += Vec3( 4, 55, 666 );
DebugLog & coat::scripto::DebugLog::clear ( )

Clear the file log.txt.

log.clear();