Go to the source code of this file.
|
class | NSIO |
| This class is responsible for handling core entity functionality. More...
|
|
|
#define | EntLog(...) if (autocvar_g_logLevel >= LOGLEVEL_DEBUG) _NSEntLog(classname, __FUNC__, num_for_edict(this), sprintf(__VA_ARGS__)) |
| Logs an entity class specific log message, with detailed info. More...
|
|
#define | EntWarning(...) if (autocvar_g_logLevel >= LOGLEVEL_WARNINGS) _NSEntWarning(classname, __FUNC__, num_for_edict(this), sprintf(__VA_ARGS__)) |
| Logs an entity class specific warning message, with detailed info. More...
|
|
#define | EntError(...) if (autocvar_g_logLevel >= LOGLEVEL_ERRORS) _NSEntError(classname, __FUNC__, num_for_edict(this), sprintf(__VA_ARGS__)) |
| Logs an entity class specific error message, with detailed info. More...
|
|
◆ EntError
Logs an entity class specific error message, with detailed info.
The console variable entity_developer
has to be 1
for them to be visible.
- Parameters
-
description(...) | contains a formatted string containing a description. |
◆ EntLog
Logs an entity class specific log message, with detailed info.
The console variable entity_developer
has to be 1
for them to be visible.
- Parameters
-
description(...) | contains a formatted string containing a description. |
◆ EntWarning
Logs an entity class specific warning message, with detailed info.
The console variable entity_developer
has to be 1
for them to be visible.
- Parameters
-
description(...) | contains a formatted string containing a description. |
◆ _NSEntError()
◆ _NSEntLog()
◆ _NSEntWarning()
◆ _mapspawned