Eden Editor: Modding

From Bohemia Interactive Community
Revision as of 14:53, 3 December 2015 by Str (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

WIP

class CfgPatches
{
	class MyAddon
	{
		units[] = {};
		weapons[] = {};
		requiredVersion = 1.0;
		requiredAddons[] = {3DEN};
	};
};


class Cfg3DEN
{
	class MyAddon
	{
		// Entity settings for each type
		class Object
		{
		};
		class Group
		{
		};
		class Trigger
		{
		};
		class Waypoint
		{
		};
		class Logic
		{
		};
		class Marker
		{
		};
		class Favorites
		{
		};

		// Scenario attributes and global preferences
		class Mission
		{
		};

		// Layer settings and attributes
		class Layer
		{
		};

		// User interface for attributes
		class Attributes
		{
		};
		// General visualization settings
		class Default
		{
		};
		// Camera settings
		class Camera
		{
		};
		// Configuration of all connection types
		class Connections
		{
		};
		// Pop-up messages
		class Messages
		{
		};
		// Non-interruptive on-screen notifications
		class Notifications
		{
		};
		// Default event handlers
		class EventHandlers
		{
		};
		// Visualization of history list entries
		class History
		{
		};
		// Update log configuration
		class Updates
		{
		};
		// Tutorials and their categories
		class Tutorials
		{
		};
	};
};