web page html parsing
hi i need to parse a content of a html page from the internet and display it to the console. So it needs to look for tags. Can any1 point me to the right direction? i have looked in to WWW class it is...
View ArticleSimple XML reading? (only string/numerical data needed)
I know this has been asked before(most of them only demonstrate with texture/resource downloads), there's scripts for this thing(none of them have documentation on how to use them or a brief...
View ArticleParsing and displaying KML
I'm trying to create a data visualization in Unity using kml data. Without worrying too much about what's in the kml files, I'm trying to figure out the best way to: - grab a number of large kml (10s...
View ArticleJSon parser for iMac
Hi all, I've a question..It may sounds silly, but any assistance from expert is highly honored... Is json parser for windowOS and MacOS different? If it isn't, how to add an assembly reference in the...
View ArticleXml parser through C sharp
Green10002RED10001.5Blue10001 this is my xml file i want to get the the score values using UnityEngine; using System.Collections; using System.Xml; public class Parsing : MonoBehaviour { public static...
View ArticleUnityScript XML parser
Hello. I have simple xml -130541 I use UnityScript XML parser to read xml from http server. Parser web page [http://dev.grumpyferret.com/unity/][1] parser = new XMLParser(); var node =...
View ArticleExternal DLL + Unityscript = Not Implemented
I am trying to implement JavaScript modding using [Jurassic](http://jurassic.codeplex.com/), a javascript parser. I can get it working with C#, but not with Unityscript. When i try to run some code, it...
View ArticleParser Error in For Loop
This one is (hopefully) a very simple question, as I just need an extra set of eyes. Can anyone spot the parser error in the code below? All variables are properly defined and the original instance of...
View ArticleParsing Error with {s Ok.
Hi, I recently downloaded an open source old proyect from internet, just to discover it was created with unity 4, so many of the scripts were outdated, I managed to fix most of the errors, except one....
View Articlehelp please
its probably simple but im new to coding so. Assets/movement.cs(9,12): error CS1519: Unexpected symbol `void' in class, struct, or interface member declaration using UnityEngine; using...
View ArticleWWW.string doesnt return the page html as expected
I'm attempting the building of a stack based html parser.. #pragma strict public var url: String = "http://www.yahoo.com"; var www: WWW; var a=0; function Start() { www = new WWW(url); } function...
View ArticleMath Parsers for Unity 5.1.4 and .NET 2.0 or Mono for Unity
Has anybody used Math Parsers with Unity before. I tried several but they don't seem to be compatible with .NET 2.0? On the other hand is there some build in function to calculate mathematical...
View ArticleHow to parse SAMI file in unity?
I want to make subtitle. I should read the file of SAMI format and put it into TextAsset. How can I do this??? + I want to know are there any SAMI parser ?
View ArticleHow to convert string to Expression ? Using string in text file as formulas...
I'm using Unity with C#. Creating a resource management game. I need an Index system. ie. Food Happiness index, Food Variety idex. Each index would have different formulas. I don't want to hardcode...
View ArticleExternal XML Parser
Hi everyone, I have a problem. I know method of internal xml parser however I want **external xml parser script** for C#. I hope you to help me for this topic. Thank you.
View ArticleParser Error Unexpected symbol `m_MovementAudio'
I am working on the 3D "Tanks" tutorial and ran into some parser errors while making the TankMovement code. The errors showed up under "private void EngineAudio()" public float m_Speed = 12f; public...
View ArticleHow can I get this code to recognize coll in my update function?
using UnityEngine; using System.Collections; public class Ninja : MonoBehaviour { float speed = 7.0f; // Use this for initialization void Start () { transform.position = new Vector3 (2, 8, -5); } //...
View ArticleParser Error Unexpected symbol `public', expecting `.' or `;'
Very new to Unity, trying to script a level restart using code I found online, I keep getting this error and I have no idea what's wrong. ![alt text][1] [1]:...
View ArticleStrange issue with the B83 expression parser
I'm using the wonderful Expression Parser created by @Bunny83 as-is with no modifications (yet): http://wiki.unity3d.com/index.php/ExpressionParser What I'm trying to do is set it up so that the parser...
View ArticleGetting a parser error in my level editor in my bubble shooter?
using UnityEngine; using System.Collections; using UnityEditor; using System; using System.IO; public class LevelEditor : EditorWindow { private static LevelEditor window; private int maxRows; private...
View Article