Eden Editor: Cfg3DEN: Difference between revisions
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="cpp"> // Editor configuration class Cfg3DEN { class MyAddon { // Entity settings for each type class Object {}; class Group {}; class Trigger...") |
m (Removed from main category, it's present in a sub category already) |
||
(One intermediate revision by one other user not shown) | |||
Line 15: | Line 15: | ||
class Mission {}; // Scenario attributes and global preferences | class Mission {}; // Scenario attributes and global preferences | ||
class Layer {}; // Layer settings and attributes | class Layer {}; // Layer settings and attributes | ||
class Comment {}; // Comment entity settings and attributes | |||
class Attributes {}; // User interface for attributes | class Attributes {}; // User interface for attributes | ||
class Default {}; // General visualization settings | class Default {}; // General visualization settings | ||
Line 29: | Line 30: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Eden Editor: Modding|Cfg3DEN]] | [[Category:Eden Editor: Modding|Cfg3DEN]] |
Latest revision as of 13:31, 1 June 2020
// Editor configuration
class Cfg3DEN
{
class MyAddon
{
// Entity settings for each type
class Object {};
class Group {};
class Trigger {};
class Waypoint {};
class Logic {};
class Marker {};
class Mission {}; // Scenario attributes and global preferences
class Layer {}; // Layer settings and attributes
class Comment {}; // Comment entity settings and attributes
class Attributes {}; // User interface for attributes
class Default {}; // General visualization settings
class Camera {}; // Camera settings
class Connections {}; // Configuration of all connection types
class Messages {}; // Pop-up messages
class Notifications {}; // Non-interruptive on-screen notifications
class EventHandlers {}; // Default event handlers
class History {}; // Visualization of history list entries
class Updates {}; // Update log configuration
class Tutorials {}; // Tutorials and their categories
};
};