Eden Editor: Cfg3DEN: Difference between revisions
Categories: Eden EditorEden Editor: Modding
 (Created page with "<syntaxhighlight lang="cpp"> // Editor configuration class Cfg3DEN { 	class MyAddon 	{ 		// Entity settings for each type 		class Object {}; 		class Group {}; 		class Trigger...")  | 
				mNo edit summary  | 
				||
| 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  | ||
Revision as of 07:56, 13 April 2016
// 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
	};
};