赞
踩
- public GameObject go;
- public Vector3 currentlocalpos;
- //index判断图片是第几个
- int index=0;
- // Start is called before the first frame update
- void Start()
- {
- //int1秒后调用调用名字为"lunbo"的方法,之后每隔int4秒后再次调用这个方法。
- InvokeRepeating("lunbo", 1, 4);
- }
-
- // Update is called once per frame
- void Update()
- {
- currentlocalpos = go.transform.localPosition;
- }
-
- void lunbo()
- {
- if(index==3)
- {
- index = 0;
- //go.transform.localPosition = new Vector3(-250, 0, 0);
- //这里的位置可以根据自己的需求自己调,这里我是-250
- go.transform.DOLocalMoveX(-250 , 1);
- }
- else
- {
- index++;
- go.transform.DOLocalMoveX(-250 - 500 * index, 1);
- }
- }
注:将“Bg”拖到脚本相应位置
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。