1
vote
0answers
23 views

Strange error with Unity3D when using my own plugin Dll file

I am trying to create a AR plugin for my Unity Project based OpenCV. If i create the dll (based C++ )file target .net framework 4.0, it worked well if i didn't put it inside asset folder but outside ...
2
votes
1answer
70 views

System.String.Split(null) doesn't remove whitespace (C#)

I know that System.String.Split(null) should return me a string array with whitespace removed. I've read this post and this MSDN doc, which does not agree with what I'm experiencing. Here's my code: ...
1
vote
2answers
57 views

All references in list point to 'this'

Running c# .NET 3.5 code in Unity is producing a really weird issue class X { static List<X> _l = new List<X>(); public X() { _l.Add(this); ...
0
votes
1answer
50 views

Formatting .NET TimeSpan in Unity

I'm trying to format a .NET TimeSpan in Unity with Javascript. I've imported System, and I'm trying to do this: c.timeLeft = (now - c.endTime).ToString("HH:mm:ss.f"); c.timeLeft is a String. now ...
0
votes
0answers
54 views

Where are specific “assemblies” in Mono?

So, after asking for some help over at the Unity forums, I was told to try dropping in specific assemblies/dependencies from Mono into the my Unity project. Unfortunately, I'm not quite sure what ...
0
votes
1answer
74 views

.NET XML Serialization with a static class in Unity: InvalidOperationException

I'm using Javascript with Unity to save data as XML. I'm importing parts of the .NET library to give me the XML serialization functionality I'm trying to take my static Global class and turn it into ...
6
votes
1answer
186 views

Problems when trying to use ksp/unity3d binaries?

I'm trying to use the kerbal space program (ksp) binaries to read in one of the ksp part models, I've added the ksp binaries and UnityEngine.dll under references then I'm doing the following: Planet ...
0
votes
1answer
53 views

how could i write the function for the card game war cleaner?

I've been working on writing the card game war in Unity3D and some were in the war function I lose 2 cards. I was wondering: is there any easier way of doing this? Or could anyone let me know what I'm ...
0
votes
1answer
221 views

true wpf webbrowser and .unity3d files. Is it possible?

I am in hope of enlightenment on the following scenario. I deployed a unity 3d scene as a webplayer. This basically creates a html page which loads a .unity3d file. I can then take I.E., chrome and ...
1
vote
1answer
77 views

Implicit downcast from 'System.IO.Stream' to 'System.IO.MemoryStream'

function SerializeObject(pObject : Object) { var XmlizedString : String = null; var memoryStream : MemoryStream = new MemoryStream(); var xs : XmlSerializer = new ...
3
votes
1answer
817 views

Loading image from iphone in Unity3d

I send image path to unity using iOS Unity plugin. And in Unity I try to get this image using received path (I have no other idea how to send image from iphone to unity). The problem: I still can't ...
0
votes
2answers
217 views

c# String[] to byte[][]

Hello I have a string array and i need to convert it to byte[][] (to connect xcode with unity scripts in C#). This is the functions in xcode: void doThisC(char** matrix); And in unity in C#, this ...
0
votes
2answers
281 views

How to set a custom mouse cursor for external application window? [closed]

I have "process_name.exe" and want to set a custom cursor for main window of that process (which is NOT a .net managed application).
0
votes
1answer
538 views

Unity 3D connection to (MS)SQL server

I have a school project - connect to MSSQL database, get some data for particular device, then in unity draw a graph, which will be bounded with some 3D object (devices in building etc.), I have time ...
1
vote
5answers
2k views

How to serialize/deserialize to `Dictionary<int, string>` from custom XML not using XElement?

Having empty Dictionary<int, string> how to fill it with keys and values from XML like <items> <item id='int_goes_here' value='string_goes_here'/> </items> and serialize it ...
4
votes
1answer
289 views

Can I serialize an object (containing members: Dictionary, List… etc) in Mono and deserialize it in MS.NET or vice versa by using protobuf-net?

I have a server running on MS.NET and a client on Mono (this is a Unity3D engine) and when i try to BinaryFormatter().Deserialize an object like this: [Serializable] public class Simulator ...
1
vote
1answer
69 views

How to send events in a frame model?

We have a frame model and lots of components in it. On nearly each frame Update() function of nearly each component is called by Frame model controller (say Unity3d and all that happens, takes place ...
0
votes
1answer
292 views

How to wrap Unity3d C# wait instruction (which waits with some yield return) into a saparate function or class?

So I forund my salfe having alike code repeating 3 times in 3 functions of my class, something like var obj = ... while (!obj.isDone) { yield return obj; } In Unity3d it is related to ...
-2
votes
3answers
140 views

How to find out if first simbol is “_” and if true remove it and make first letter capital?

We have a string (0 .. N simbols long). How to find out if its first simbol is "_" and if true remove it and make first letter capital (fro example "_distance" => "Distance")? I wondered in ...
1
vote
1answer
369 views

How to profile Performance (RAM, CPU usage) from MonoDevelop of Unity3D application?

So It is pretty eazy how to debug from MD (attach to Unity and here you go - line by line), but I wonder If it is possible to get any visual profiling of my game app in MD. How to profile Performance ...
4
votes
1answer
688 views

Is possible to use lua code in Unity3D

We need to use some specific library written in Lua in unity application. Is there any possible way aside from complete rewriting it in C#/JS?
1
vote
0answers
232 views

Unity3D debug magically removes NullReferenceException?

A friend of mine, which in a programmer too, has got stuck in some really weird stuff... I can't really explain it, because this code: try { result = chunks.Find (delegate(float[] fa2) { // ...
0
votes
1answer
476 views

Writing and then removing node from XML doc using C#/Unity3D

I am trying to add nodes to an xml document and then deleting them. Adding nodes is working, but i cant remove nodes unless i restart the program. The Write method: public void writeToExistingDoc ...
4
votes
2answers
490 views

Why does 0.5 rounded with MidpointRounding.AwayFromZero result in 0?

Why does this result in 0 and not 1? Math.Round(0.5, 0, MidpointRounding.AwayFromZero) Here's an example: http://ideone.com/ayMVO
2
votes
3answers
2k views

ActiveX initialization: AxHost.State object

I'm trying to embed a Unity3D-ActiveX control into a WPF-Form by using a WinFormsHost-Control. Actually it works well when setting the path in the property window of VS, but when setting it in my ...
0
votes
1answer
249 views

Xml transfer via IPC for .net (4.0) to Mono on windows

I have a .net 4.0 app computing data i'd like to visualise with www.unity3d.com which has c# mono scripting. To do this i'd like to send xml strings between the two apps - one of which is running .net ...
2
votes
1answer
761 views

How do I send an HTTP request in C# without using System.Net classes?

Is there a way in C#, perhaps using an external library of some kind, to perform HTTP web requests without using the built-in .NET classes (HttpRequest, WebRequest, WebClient...) ? I ask because I'm ...