Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
124 views
in Technique[技术] by (71.8m points)

c# - Call Unity function from Java

I'm new to unity :

I create in Unity a simple cube and put some texture over. I rotate the cube... move camera....then export to android studio. When I run everything looks like in Unity.

But I want to move camera or the cube from android studio code ( programming lines ) and I can not find any way to .."findViewById" or similar to be able to find my cube :)

I try to make a C# file ( I just crate one in assets folder ) and put :

public class test : MonoBehaviour {
public GameObject respawn;
void Start () {

    Debug.Log("aaaaaaaaaaaaa1111111111111111");
    if (respawn == null)
        respawn = GameObject.FindWithTag("mamaie");


    respawn.transform.Rotate(10f, 50f, 10f);

}

// Update is called once per frame
void Update () {
    transform.Rotate(10f, 50f, 10f);
}

void LateUpdate()
{
    transform.Rotate(10f, 50f, 10f);
}
}

So... how can I control my cube ( designed in unity and imported in android studio ) from programming lines ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You can call C# function from Java with UnityPlayer.UnitySendMessage.

This is the what the parameters look like:

UnityPlayer.UnitySendMessage("GameObjectName", "MethodName", "parameter to send");

In order to have access to this function, you have to include classes.jar from the <UnityInstallDirectory>EditorDataPlaybackEnginesAndroidPlayerVariationsmonoReleaseClasses directory into your Android Studio project then import it with import com.unity3d.player.UnityPlayer; in the Android Studio Project.

Your C# code:

bool rotate = false;

void startRotating()
{
    rotate = true;
}

void stopRotating()
{
    rotate = false;
}

void Update()
{
    if (rotate)
        transform.Rotate(10f, 50f, 10f);
}

Let's assume that the script above is attached to GameObject called "Cube".

To start rotation from Java:

UnityPlayer.UnitySendMessage("Cube", "startRotating", null);

To stop rotation from Java:

UnityPlayer.UnitySendMessage("Cube", "stopRotating", null);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...