Tagged Questions
0
votes
1answer
145 views
GCM Plugin for Unity, Could not find method GCMRegistrar.checkDevice
I've seen posts about this before, but none of the solutions seem to have worked for me.
I downloaded/installed Eclipse for ...
0
votes
1answer
65 views
Need Simple Server Solution: Unity 3D Asset Bundles
We have a game that is 100 MB. We will break it up into 2 files, 1 25 MB (for the app store) and the other 75 MB to be dynamically downloaded on first time game load.
We don't have any web gurus on ...
0
votes
0answers
91 views
Create light shapes on plane using C# (similar to the game Closure)
I'm having some trouble coming up with a function in C# since I'm new to unity. I'm making a 2.5D game with a couple of friends and it mostly revolves around using light. So the levels are mostly ...
-1
votes
1answer
110 views
POST/Form Data from java
I'm looking to make some requests to some pages I've made that submit data to a DB.
Using the game engine Unity, this is the best way to write to a DB. The WWWForm class makes it really snappy.
...
-2
votes
1answer
81 views
Cant figure out a way to move my object in x axis (Unity) [closed]
I'm trying to move an object in the x axis when pushing a button.
Unity is the software I'm using, so please help me solve this problem because I'm stuck.
private var ray : Ray;
private var ...
0
votes
1answer
681 views
Android Plugin for Unity giving errors
i was doing a test application to learn how we cam use java code in unity through Plugin.
I created a simple Android Activity class using Android 3.2 in eclipse.
package com.control.unitycontrol;
...
0
votes
0answers
312 views
Unity3d game does not receive push notifications
I am building a game using Unity3d, that is going to use the GCM service (which I wrote into a custom library). But here is my problem. This custom library works, as long as it is in a native android ...
1
vote
1answer
456 views
How to create Android Handler in a Java plugin called from Unity
So, let's say you have a Unity Java plugin, you call into the Java plugin like so
private static readonly AndroidJavaClass m_somePlugin = new AndroidJavaClass("com.unity3d.Plugin.blah.SomePlugin");
...
1
vote
1answer
519 views
How to integrate Unity into an Android Activity
This is my first time using Unity, and I want to integrate it into an already existing Android app.
From what I've read, you need to package your Android project into a jar file. Since you can't ...
0
votes
2answers
487 views
Send Android cameraPreview data to Unity
I use an java android activity with unity. In android I use the Camera to get a Preview, Now I want to send this data to unity using UnitySendMessage, but only strings are allowed here. So I convert ...
0
votes
0answers
189 views
Transfer parameters failure when unity calls Java method
Unity part of code:
public class test : MonoBehaviour {
public string [] str;
AndroidJavaClass ajc=null;
AndroidJavaObject ajo=null;
void Start () {
str=new ...
3
votes
0answers
773 views
Unity3d Android plugin static AsyncTask issue
I'm developing an application for android on Unity3d engine. This application must connect to my server on PC via network sockets. I found some Unity3d plugin examples for Android. Based on them I've ...
1
vote
2answers
160 views
Receiving packets in c# using threading
I am following a Java example that uses a Completion Service to submit queries to a 3rd party app that receives packets by calling:
completionService.submit(new FetchData());
Then it calls:
...
0
votes
0answers
62 views
What is the best approach to building an online application similar to Easel.io?
Easel.io -- a new online website builder allows the user to draw shapes and write text with multiple font and color choices and lets them save the document for future editing... What kind of language ...
0
votes
1answer
147 views
Browsergame for PC and tablet - which plug-in to rely on?
I am part of a student project working to create a free educational chemistry browser game, but we can't decide on which plug-in to use (Flash, Java, Unity...).
The game will consist of 2d graphics ...
-3
votes
1answer
113 views
How can I export a Unity map and put it in my Java game? [closed]
I want to export a map I made with Unity. Then, I wish to put it into my Java game. How can I add maps to it? Is there a specific way? Tutorial?
0
votes
0answers
515 views
Starting activity through Activitygroup Android
I'm using Eclipse to make Android plugins for Unity3d.
I have an Activity group and in OnCreate I start my UnityPlayerActivity:
setContentView(R.layout.main);
m_Handler = new Handler();
lam = ...
0
votes
1answer
330 views
StreamWriter.Flush(); won't flush
i am trying to link a Unity game to a Java server using C#
when the Java server up the only way i can send data is by closing the StreamWriter (OUT.Close();) which actually closes the connection too. ...
0
votes
0answers
213 views
unity3d shared preferences
SharedPreferences settings = getSharedPreferences("HashData", 0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("SessId","this is a session id ");
...
0
votes
0answers
315 views
Add an Android Edittext view via Unity3d Java Plugin
I created a Unity Java plugin so that I might create some elements (ie. edittext) on my android device that are tightly coupled with the OS.
Objective:
Add a Android EditText View to the bottom of my ...
0
votes
0answers
134 views
Calling Android forms on unity 3d
Can I call forms built on android in unity3D ? I can get string and
integers using JNI dont know about the forms. I have been searching
for such a solution since a week not able to find one.
0
votes
1answer
348 views
Android java plugin call to method returns zero
I'm using android java plugin to call my java function in unity like this:
static IntPtr cls_Activity;
static IntPtr fid_Activity;
static IntPtr obj_Activity;
static IntPtr kdataActivityClass;
...
0
votes
1answer
238 views
Java Applet or Unity3D for Cross-Platform 3D Surveying App
Do you think a Java Applet or Unity3D Application is the best option to make a cross-browser 3d web-app?
I intend to make a web application that displays 3d environments that can be navigated by ...
1
vote
2answers
1k views
java.awt.Robot.keyPress for continuous keystrokes
So, here's my problem. I have a java program which will send keystroke messages to a game (built in Unity), based on how the user interacts with an android phone. (My java program is a listener for ...
2
votes
2answers
2k views
Android build fails when build with Eclipse
I got a strange problem lately with my eclipse build. When building my app via Unity everything works fine and the build runs ok, but I need to get it working with eclipse as I have some plugins I ...
2
votes
1answer
1k views
Unity3D integration with Eclipse for Android project
I've been trying to integrate Unity3D project with eclipse following this example: http://unity3d.com/support/documentation/Manual/Android-Integrating%20Unity%20With%20Eclipse.html
The guide says, ...
0
votes
2answers
2k views
Calling Android NDK function from Unity Script
So I'm creating an Android app that uses Unity ... I am getting some assetbundle from Unity but I do not know the url before Unity starts. Thus Unity needs to call a function on the Native (Android) ...
0
votes
1answer
81 views
Combine 2 apks together so they are installed together
I am creating a game with some additional features, so I am using a normal JAVA development way and Unity for 3D graphics and the whole engine. These 2 parts are connected and both needed for the ...
0
votes
2answers
248 views
Frameworks/Libraries & Game engines — What's the difference
I've seen plenty of game programming frameworks, libraries, and engines but there seems to be a difference I can't put a finger on. It seems like frameworks are harder to work with than engines.
From ...
1
vote
4answers
418 views
Best 3D engine / software for four view editor application
I am going to write an 3D path editor. This editor should support four view set up (rront, left,right,3D). There is also necessary to use third party libraries for path calculations. Also there should ...
0
votes
1answer
1k views
Android: Can't create handler inside thread that has not called Looper.prepare()
I am trying to run the following but am getting the error
Can't create handler inside thread that has not called Looper.prepare()
Here is my code
private static void getLocations(){
...
0
votes
1answer
560 views
Unity, Android, Crash on scene load java.lang.ClassCastException: java.lang.Float
I need some help.. I believe this error to be some variable somewhere in my many files to be a float used like a int or somthing like that correct? but for the life of me i can not find where this ...
2
votes
5answers
1k views
What are the reasons for and against developing a game in Java/C#(XNA included)/Unity?
I am thinking of creating a game just for fun. What are the advantages in programming in these languages. I believe Unity and Java both have their own embeddable applet thing and C# has a software ...

