UnityでのC#です。
Unity内でオブジェクト名に「bone.001」などがあり、そのオブジェクト名をスクリプト内で宣言したいのですが、
おそらく「.」が使えないようで「構文エラーです」とエラーがでてしまいます。
オブジェクトをリネームして「bone_001」等にすれば宣言出来るのですがなるべく元ファイルのまま宣言したいのです。
何か方法はないでしょうか?
コードを追記します、以下でエラーが出ます、よろしくお願いします。
using System.Collections; using System.Collections.Generic; using UnityEngine; public class test : MonoBehaviour { public GameObject spine.001; // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } }
回答3件
あなたの回答
tips
プレビュー