Jump to content

GUI "Create" helper function.


aWeirdo
 Share

Recommended Posts

I made a helper function to create GUI elements easier, could maybe even be used to import GUI's stored in JSON files quite easily

Comments in PG should explain, 
but here's the basics:

Create( elementType, parent, propertiesObject )

elementType = TextBlock, Image, etc.. 
E.g. 
new BABYLON.GUI.TextBlock(); 
..turns into.. 
Create( "TextBlock", ...);

parent = Parent Element.. 
E.g. 
parentElement.addControl( newElement );
..turns into.. 
Create("TextBlock", parentElement, ...);

propertiesObject = Width, Height, Text.. 
E.g. 
element.width = "200px"; 
element.height = "50px";
element.text = "Just a textBlock";
..turns into.. 
Create("TextBlock", parentElement, { 
  width: "200px", 
  height: "50px", 
  text: "Just a textBlock" 
});

More advanced useage using "designs" & Object.assign() to re-use code can be found in PG.

http://playground.babylonjs.com/#ZQYH6Q

Maybe some people will find it useful.
Cheers,
Have a nice weekend!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...