Unity C#将图像传输到另一个场景

时间:2018-06-16 11:33:52

标签: c# unity3d

我目前正在使用这个应用程序一段时间,我在这里将图像传输到另一个场景。例如:

我有第一个场景 - >我有一个按钮来执行图像到另一个场景。这是我的代码:

 public void transferThisImage(){
   SecondScene theImage = GetComponent<SecondScene>();
   theImage.secondSceneImage.gameObject.setactive(true); 
   }

然后我有第二个场景 - &gt;这将接受第一个场景的按钮的命令。其代码为:

public Image secondSceneImage;

它返回null,我也尝试将图像更改为游戏对象,但它也不起作用。以前有人有这个问题吗?非常感谢任何帮助

0 个答案:

没有答案