2つの質問。
1)Javascriptでスクリプトを作成しているときに、LitJsonライブラリをそのまま使用することはできますか?これは、JavaScriptソースでc#ソースを使用できるかどうかについての一般的な質問です。
2)私はc#devを初めて使用します。LitJsonを稼働させることができないようです。次のコードはこのエラーをスローします:An object reference is required to access non-static member
LitJson.JsonReader.Read()'`
using UnityEngine;
using System.Collections;
public class Loadr : MonoBehaviour {
string url= "http://developer.echonest.com/api/v4/artist/images?api_key=N6E4NIOVYMTHNDM8J&id=ARH6W4X1187B99274F&format=json&results=1&start=0&license=unknown";
void Start (){
WWW www = new WWW(url);
print(www.text);
Object a = LitJson.JsonReader.Read(www.text);
print(a.response.status);
}
}
何かご意見は?