a0ad653d7d
* gui resizelayout #51 * checkbox icons * updates * weather reset * embedded logo asset
39 lines
1.6 KiB
C
39 lines
1.6 KiB
C
#pragma once
|
|
#include "IconsFontAwesome6.h" // icon descriptions, source: https://github.com/juliettef/IconFontCppHeaders
|
|
|
|
// These map the Font Awesome icon definitions to editor:
|
|
// These definitions will help to change icons that are scattered throughout the editor codeL
|
|
#define ICON_LAYER ICON_FA_LAYER_GROUP
|
|
#define ICON_TRANSFORM ICON_FA_LOCATION_DOT
|
|
#define ICON_MESH ICON_FA_CUBE
|
|
#define ICON_OBJECT ICON_FA_CUBES
|
|
#define ICON_RIGIDBODY ICON_FA_CUBES_STACKED
|
|
#define ICON_SOFTBODY ICON_FA_FLAG
|
|
#define ICON_EMITTER ICON_FA_FIRE
|
|
#define ICON_HAIR ICON_FA_SEEDLING
|
|
#define ICON_FORCE ICON_FA_WIND
|
|
#define ICON_SOUND ICON_FA_VOLUME_HIGH
|
|
#define ICON_DECAL ICON_FA_NOTE_STICKY
|
|
#define ICON_CAMERA ICON_FA_VIDEO
|
|
#define ICON_ENVIRONMENTPROBE ICON_FA_EARTH_ASIA
|
|
#define ICON_ANIMATION ICON_FA_PLAY
|
|
#define ICON_ARMATURE ICON_FA_PERSON
|
|
#define ICON_POINTLIGHT ICON_FA_LIGHTBULB
|
|
#define ICON_SPOTLIGHT ICON_FA_LIGHTBULB // todo: find better one for spotlight
|
|
#define ICON_DIRECTIONALLIGHT ICON_FA_SUN
|
|
#define ICON_MATERIAL ICON_FA_FILL_DRIP
|
|
#define ICON_WEATHER ICON_FA_CLOUD
|
|
|
|
#define ICON_TERRAIN ICON_FA_MOUNTAIN_SUN
|
|
|
|
#define ICON_SAVE ICON_FA_FLOPPY_DISK
|
|
#define ICON_OPEN ICON_FA_FOLDER_OPEN
|
|
#define ICON_CLOSE ICON_FA_TRASH
|
|
#define ICON_BACKLOG ICON_FA_BOOK
|
|
#define ICON_HELP ICON_FA_CIRCLE_QUESTION
|
|
#define ICON_EXIT ICON_FA_CIRCLE_XMARK
|
|
#define ICON_SCALE ICON_FA_UP_RIGHT_AND_DOWN_LEFT_FROM_CENTER
|
|
#define ICON_ROTATE ICON_FA_ROTATE_RIGHT
|
|
#define ICON_TRANSLATE ICON_FA_UP_DOWN_LEFT_RIGHT
|
|
#define ICON_CHECK ICON_FA_CHECK
|