Dynamic Vertical Column Generation button

Source: Internet
Author: User

Using Unityengine;
Using System.Collections;
Using Unityengine.ui;

<summary>
Used to test dynamically generated download lists
</summary>
public class Uiload:monobehaviour
{
int contdown = 4;
Initial position
int LBX = 200;
Download list
Public Gameobject DownControl0;
Use this for initialization
void Start ()
{
Dynamically Create download lists
for (int i = 0; i < Contdown; i++)
{
List box Location
LBX-= 100;

Gameobject temp = Instantiate (Resources.load ("Showcontrol")) as Gameobject;
Temp.transform.parent = Downcontrol0.transform;
Temp.transform.localPosition = new Vector3 (0, LBX, 0);
Download Image display
texture2d img = (texture2d) resources.load (i.ToString ());
Temp.transform.FindChild ("texture"). Getcomponent<image> (). Sprite = Sprite.create (img, new Rect (0, 0, up, 0.5f), New Vector2 (0.5f);
Download name
Temp.transform.FindChild ("Loadname"). Getcomponent<text> (). Text = i.ToString ();
button click event (for passing download connection
Temp.transform.FindChild ("Loadbutton"). Getcomponent<loadbutton> (). str = i.tostring ();
}
}

Update is called once per frame
void Update ()
{
}
}

Dynamic Vertical Column Generation button

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.