Set default document res to 6K. Implement blending on canvas, mixer and export equirect.

This commit is contained in:
2019-01-07 15:32:12 +01:00
parent 006c838449
commit 7773026358
9 changed files with 144 additions and 65 deletions

View File

@@ -8,7 +8,7 @@
#include "canvas_modes.h"
#include <stack>
#define CANVAS_RES 512
#define CANVAS_RES 1536
class Layer
{
@@ -20,7 +20,7 @@ public:
bool m_alpha_locked = false;
float m_opacity = 1.f;
bool m_hightlight = false;
bool m_blend_mode = 0;
int m_blend_mode = 0;
std::string m_name;
int w = 0;
int h = 0;