2018-09-17 15:12:13 +02:00
|
|
|
#ifndef _technologies_h_
|
|
|
|
|
#define _technologies_h_
|
|
|
|
|
|
2018-11-01 13:42:07 +01:00
|
|
|
//============
|
2018-10-26 09:50:28 +02:00
|
|
|
// debug techs
|
2018-11-01 13:42:07 +01:00
|
|
|
//============
|
2018-10-26 09:50:28 +02:00
|
|
|
|
|
|
|
|
// Shows camera target in the 3D scene
|
2018-11-15 15:43:24 +01:00
|
|
|
#define ENABLE_SHOW_CAMERA_TARGET 0
|
2018-10-26 09:50:28 +02:00
|
|
|
|
2018-11-01 13:42:07 +01:00
|
|
|
//=============
|
2018-09-17 15:12:13 +02:00
|
|
|
// 1.42.0 techs
|
2018-11-01 13:42:07 +01:00
|
|
|
//=============
|
2018-09-17 15:12:13 +02:00
|
|
|
#define ENABLE_1_42_0 1
|
|
|
|
|
|
2018-09-19 15:39:54 +02:00
|
|
|
// Add double click on gizmo grabbers to reset transformation components to their default value
|
|
|
|
|
#define ENABLE_GIZMOS_RESET (1 && ENABLE_1_42_0)
|
2018-10-04 10:41:11 +02:00
|
|
|
// Uses a unique opengl context
|
|
|
|
|
#define ENABLE_USE_UNIQUE_GLCONTEXT (1 && ENABLE_1_42_0)
|
2018-11-01 10:06:55 +01:00
|
|
|
// Disable synchronization of unselected instances
|
2018-11-06 08:47:21 +01:00
|
|
|
#define DISABLE_INSTANCES_SYNCH (0 && ENABLE_1_42_0)
|
2018-10-26 09:50:28 +02:00
|
|
|
// Modified camera target behavior
|
|
|
|
|
#define ENABLE_MODIFIED_CAMERA_TARGET (1 && ENABLE_1_42_0)
|
2018-10-31 14:56:51 +01:00
|
|
|
// Add Geometry::Transformation class and use it into ModelInstance, ModelVolume and GLVolume
|
|
|
|
|
#define ENABLE_MODELVOLUME_TRANSFORM (1 && ENABLE_1_42_0)
|
2018-11-16 11:30:36 +01:00
|
|
|
// Keeps objects on bed while scaling them using the scale gizmo
|
|
|
|
|
#define ENABLE_ENSURE_ON_BED_WHILE_SCALING (1 && ENABLE_MODELVOLUME_TRANSFORM)
|
2018-11-14 10:43:52 +01:00
|
|
|
// Gizmos always rendered on top of objects
|
|
|
|
|
#define ENABLE_GIZMOS_ON_TOP (1 && ENABLE_1_42_0)
|
2018-11-15 15:27:39 +01:00
|
|
|
// New menu layout (open/save/save as project + import/export)
|
|
|
|
|
#define ENABLE_NEW_MENU_LAYOUT (1 && ENABLE_1_42_0)
|
2018-11-21 09:28:27 +01:00
|
|
|
// All rotations made using the rotate gizmo are done with respect to the world reference system
|
|
|
|
|
#define ENABLE_WORLD_ROTATIONS (1 && ENABLE_1_42_0)
|
2018-11-22 10:14:31 +01:00
|
|
|
// Enables shortcut keys for gizmos
|
|
|
|
|
#define ENABLE_GIZMOS_SHORTCUT (1 && ENABLE_1_42_0)
|
2018-10-31 10:19:44 +01:00
|
|
|
// Scene's GUI made using imgui library
|
2018-11-27 11:28:00 +01:00
|
|
|
#define ENABLE_IMGUI (1 && !__APPLE__ && ENABLE_1_42_0)
|
2018-09-25 10:42:11 +02:00
|
|
|
|
2018-09-17 15:12:13 +02:00
|
|
|
#endif // _technologies_h_
|
|
|
|
|
|
|
|
|
|
|