Merge pull request #464 from Azaezel/alpha40/ribbonParticles

ribbon particle resource port
This commit is contained in:
Brian Roberts 2021-02-15 22:28:10 -06:00 committed by GitHub
commit f4982f3b7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 354 additions and 5 deletions

View file

@ -786,6 +786,32 @@ $PE_guielement_ext_colorpicker = "18 18";
altCommand = "PE_EmitterEditor.updateEmitter( \"alignDirection\", $ThisControl.getText());";
};
};
new GuiControl(){ // Emitter ribbon
isContainer = "1";
HorizSizing = "width";
VertSizing = "bottom";
Position = $PE_guielement_pos_single_container ;
Extent = $PE_guielement_ext_single_container ;
new GuiTextCtrl() {
Profile = "ToolsGuiTextProfile";
HorizSizing = "width";
VertSizing = "bottom";
position = $PE_guielement_pos_name;
Extent = $PE_guielement_ext_checkbox_name;
text = "Render as a Ribbon";
};
new GuiCheckBoxCtrl() {
internalName = "PEE_ribbonParticles";
Profile = "ToolsGuiCheckBoxProfile";
HorizSizing = "left";
VertSizing = "bottom";
position = $PE_guielement_pos_checkbox;
Extent = $PE_guielement_ext_checkbox;
text = "";
command = "PE_EmitterEditor.updateEmitter( \"ribbonParticles\", $ThisControl.getValue());";
};
};
}; // end stack
}; // end "motion" rollout
new GuiRolloutCtrl() {