Tagged Questions
0
votes
0answers
13 views
Use Midi-Controller with Unity
I would like to use a hardware MIDI-controller (sending CC-messages) to control my game in Unity but I don't how to get the MIDI-data into a C# or JavaScript.
Does anyone have an idea how to get the ...
2
votes
0answers
51 views
Creating Windows Form outside of Application.Run results in strange behaviour. Why?
After a week of code-debugging I found that the problem my Windows-Forms based GUI was behaving strangely was because I was running the form as:
Form1 myGui = new Form1();
Application.Run(myGui);
...
0
votes
1answer
113 views
mono in unity 3d and .net remoting
I am working on a Unity project where I need to work with a remoting client. I have created an interface class and I am using a remoting server in an other Unity project.
While the server is working ...
1
vote
2answers
65 views
Does IEnumerators require more resources than Arrays?
I have an implementation of the Sutherland–Hodgman algorithm, and so I need to return arrays frequently. I'm using Unity, so the answer needs to apply at least on the Mono runtime.
I'm wondering If ...
1
vote
1answer
68 views
How to view the content of a garbage collection?
Is there any way to view the content of what is being garbaged?
Basically I'd to be able to see, when I have a GC spike, ok 1200 objects of such and such type have been collected, so maybe I can ...
1
vote
0answers
30 views
Corlib not in sync when building Unity games with mdtool in OSX
Unity3D, a popular game engine, packages a version of mono (and monodevelop) with its install. Recently I installed Xamarin Studio, keen to play with it. Later I followed some online guides for ...
0
votes
0answers
48 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
0answers
269 views
Database connection issue between C# and MySQL using Mono in Unity
For a personal project I am trying to use MySQL to access a database I have created which stores images. I am coding my scripts in C# but my connection refuses to open. Here is a snippet of my code ...
3
votes
1answer
257 views
Configure Visual Studio 2012 to use Mono's C# compiler instead of the default csc.exe
I work in a game engine called Unity3D whose scripting system runs on Mono. By default Unity uses a modified version of Mono to develop/compile script. I am in the process of setting up my Visual ...
1
vote
1answer
59 views
MonoDevelop Command line debugger
Where is the command line debugger for Monodevelop? I'm using unity's version (3.5) of mono version 2.10? I'm using OSX
I'm trying to find the mdb talked about here: ...
1
vote
1answer
65 views
creating table border in unity3d
I am working on a pool game of sorts. To create a table, I have used cubes as sides. I want to use the inbuilt physics engine to get those sides interact with the balls. Sadly I am unable to get it ...
0
votes
2answers
67 views
What is most GC efficient way to pass a List of items from tree parent to its leaves in Mono 2.6 (.Net 3.5)??
So we have a tree based on class like this (pseudocode):
class TreeItem {
private TreeItem parent;
private List<TreeItem> leaves;
public void Filter(List<Target> targets) { /* ...
-1
votes
2answers
187 views
How to use XDocument class in Mono
I'm trying to use XDocument class inside a Unity3D project on Windows 7.
I did the following:
added the reference System.Xml.Linq to the Mono project.
included the namespace:
using ...
0
votes
1answer
178 views
JsonTypeCoercionException: Only objects with default constructors can be deserialize
I'm working with JsonFx using C# (via Mono in Unity3D) to serialize some data but I get: "JsonTypeCoercionException: Only objects with default constructors can be deserialized. (Level[])" when I try ...
2
votes
1answer
119 views
Ran out of trampolines of type 2
We develop our game with Unity 3D for iOS. Recently I merged my branch of code with another branch and run it with Unity editor. It works well. But when I ran app on iPad it crashes with message "Ran ...
5
votes
1answer
93 views
Floating point inconsistency in mono
This is a very simple question. I try this in .NET immediate window:
30f + 0.5f
And get 30.5 as expected. In mono I get 30 and that makes no sense. Details:
.NET: Visual Studio 2010 SP1
mono: ...
0
votes
2answers
176 views
What version of C# is used by Mono 2.6.4?
Perhaps (hopefully) I'm missing something obvious, but I can't see from the Mono site what version of C# is used for any particular version of Mono, and as a C# newbie I'm not sure how to find out ...
0
votes
0answers
174 views
Android crash while application loading (Unity3D 3.5.64f (latest))
I know this is Unity3D question and there are more specific stack/forum sites...
Pls see attached logcat log, is there anything which gives us any clue?
Unity Splash screen appears on device, but ...
1
vote
5answers
1k 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
276 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 ...
0
votes
1answer
280 views
How to implement Unity like internal call with mono
C# side code
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_rotation(ref Quaternion value);
How to expose this method from C++ to mono
Thanks.
3
votes
2answers
436 views
JIT compile method error in Unity/Monotouch/C# setting delegate for 3rd party library
I am trying to create a chatclient for facebook for iOS in Unity/Monotouch/C#. I get the following error
ExecutionEngineException: Attempting to JIT compile method '(wrapper managed-to-native)
...
-3
votes
1answer
114 views
How to store coroutines inside a List?
I want to create a List of coroutines to start if future. How to store such functions inside a list?
Say we have a function like:
IEnumerator Example() {
while (true) {
yield return new ...
4
votes
1answer
924 views
IronPython in Unity3D
I am trying to use IronPython as an external scripting language for Unity3D. The necessary DLLs for IronPython's execution load just fine inside of Assets\Plugins. However, when I try to run the ...
0
votes
0answers
272 views
How to create a folder in sdcard/Android/data/ in Unity3d
OK, I want to be able to write some config files (and edit them without recompiling) into that folder while building Unity3D android project. How can I do that? Have I an access to that folder in ...
2
votes
1answer
206 views
What are *.dll.s files and what are they used for?
I am currently working on an iOS project using the Unity framework.
When I export an Xcode project from Unity, there are a whole bunch of files exported.
Besides some source files, there are also ...
1
vote
1answer
354 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 ...
1
vote
1answer
2k views
Loading Resources in a Native Plugin (Unity)
How do I load resources (text files, textures, etc.) from within a native plugin? I'm in the process of attempting to implement a mono invoke of Resources.Load(), but I am unsure as to how to handle ...
0
votes
1answer
1k views
Marshalling Objective-C to C# with Unity, Mono, and P/Invoke
I'm trying to call Unity C# script from the Objective-C side. Functions with void parameters work. Functions with string parameters work if the script on the other side is Javascript.
Functions ...
1
vote
0answers
145 views
How can I restart mono-Modules in iOS for Unity?
I would like to restart the engine Unity on the iPhone. For this purpose we have adapted to the AppController. We use the Unitycleanup function to quit Unity. But if we start the Unity InitApplication ...
6
votes
2answers
5k views
How to start an Android activity from a Unity Application?
I know this seems to be a trivial question but I could not find any concrete answer anywhere on the internet. I saw this very similar question on stackoverflow: How to start Unity application from ...
1
vote
0answers
417 views
RegisterClass error in Unity Editor when using Mono.WinForms
I'm using Mono.WinForms to create external windows in Unity and it works great except that I get this error message each time I play the scene (but never the first time when Unity is freshly started): ...
8
votes
5answers
611 views
How can I multiply a float and a generic type?
I'm programming in Unity 3.4.2 on OS X using C#.
I have a class like the following:
class Foo<T>
{
public T DoFoo(T bar)
{
float aFloatValue = 1.0f;
// Do other ...
4
votes
2answers
424 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
1
vote
1answer
429 views
How can I troubleshoot “Attach to Process” issues in MonoDevelop?
I'm using MonoDevelop 2.8.2 with the latest Unity 3.5 release. I can no longer "Attach to Process" to the Unity Editor - how can I troubleshoot this? I can still launch Unity directly from MonoDevelop ...
2
votes
1answer
293 views
unsupported MONO function “ System.Security.Principal.WindowsIdentity.GetCurrent(bool)” using UNITY3D and MATLAB's MWARRAY.DLL
the problem starts with a function call to a mono function that is not supported yet. the call is made from a close matlab DLL called MWARRAY.DLL (.net version 2.x), this dll is normally used with VS ...
2
votes
0answers
262 views
Sending values to C# wrapped C++ dll cause Unity crash
I have a C++ class I want to use in Unity(C#), so I compiled a C++ dll and create a C# wrapper dll for it. I did this using SWIG.
When I do this:
Graph g = new Graph();
int k = g.AddNode();
It's ...
2
votes
2answers
464 views
AWS S3 .NET SDK
I am using Unity3D, and have try to use S3 .NET SDK. But keep getting below error:
TlsException: Invalid certificate received from server. Error code: 0xffffffff80092012
...
0
votes
1answer
445 views
graph library for mono/c#
I'm using the unity3d engine to build a program and I'm going to need to do some basic graph problems, find strongly connected components, find shortest traversal, etc. I know that the quckgraph ...
2
votes
2answers
2k views
Unity3d - TCP client
How to write a TCP client in Unity3d which reads data constantly from a server socket and prints to the console or updates on some text boxes? thankyou in advance for the help.
0
votes
2answers
355 views
Find out why Xcode has decided to link to a particular library
I'm using the Unity 3D engine to build an iPhone app, and when I go to generate my Xcode project for compilation, it includes a few fairly large libraries: Mono.Security.dll.s, System.dll.s, ...
3
votes
1answer
1k views
C# Mono aot with protobuf-net getting ExecutionEngineException
First a big thanks to Marc Gravell author of protobuf-net http://code.google.com/p/protobuf-net/ . It's a really great resource. Anyhow I am hoping that Marc or someone else can help me resolve this ...
0
votes
1answer
244 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 ...
0
votes
1answer
94 views
x = something(x) as something(x)
In Unity3D, which supports mono 2.6ish, for a gui element, I'd write this
SomeProperty = GUI.FloatField(SomeProperty);
However I would like to write something like
GUI.FloatFieldFor(SomeProperty);
...
2
votes
1answer
720 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 ...
0
votes
3answers
1k views
How to Serialize to XML containing attributes in .NET?
I have that code:
...
request data = new request();
data.username = formNick;
xml = data.Serialize();
...
[System.Serializable]
public class request
{
public string username;
public ...
5
votes
1answer
1k views
I'm confused about some Reflection code, and looking for insight
I'm developing for the iPhone using C# and Mono's Full AOT technology. According to their Limitations page (link text), unlike traditional Mono/.NET, code on the iPhone is statically compiled ahead of ...
