mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 06:34:36 +00:00
Merge pull request #464 from Azaezel/alpha40/ribbonParticles
ribbon particle resource port
This commit is contained in:
commit
f4982f3b7d
3 changed files with 354 additions and 5 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue