-ability to set default textures in shader (needed for visual shader editing)
-work in progress new graph system (will replace current one) -crash fix in s3m loader (out of bounds acess) -fixed vbox overriding of separation (fixes empty line between section tabs)
This commit is contained in:
parent
9783f6fc96
commit
f7f197c409
23 changed files with 353 additions and 46 deletions
|
|
@ -44,7 +44,7 @@ void BoxContainer::_resort() {
|
|||
|
||||
Size2i new_size=get_size();;
|
||||
|
||||
int sep=get_constant("separation",vertical?"VBoxContainer":"HBoxContainer");
|
||||
int sep=get_constant("separation");//,vertical?"VBoxContainer":"HBoxContainer");
|
||||
|
||||
bool first=true;
|
||||
int children_count=0;
|
||||
|
|
@ -202,7 +202,7 @@ Size2 BoxContainer::get_minimum_size() const {
|
|||
/* Calculate MINIMUM SIZE */
|
||||
|
||||
Size2i minimum;
|
||||
int sep=get_constant("separation",vertical?"VBoxContainer":"HBoxContainer");
|
||||
int sep=get_constant("separation");//,vertical?"VBoxContainer":"HBoxContainer");
|
||||
|
||||
bool first=true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue