<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/38unity/">
    <title>38歳からのUnity</title>
    <link>http://w.atwiki.jp/38unity/</link>
    <atom:link href="https://w.atwiki.jp/38unity/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>38歳からのUnity</description>

    <dc:language>ja</dc:language>
    <dc:date>2021-10-24T23:23:05+09:00</dc:date>
    <utime>1635085385</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/6.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/38unity/pages/5.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/14.html">
    <title>初級講座/ボタンの作成(テンプレート)</title>
    <link>https://w.atwiki.jp/38unity/pages/14.html</link>
    <description>
      using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ButtonClass : MonoBehaviour
{
    // ボタン用
    [SerializeField] Vector3 DOWN_SCALE = new Vector3(1,1,1);
    [SerializeField] float DONW_LONG_TIME,down_timer;
    bool down;

    public enum STATUS{IDLE,DOWN_SHORT,DOWN_LONG};
    public STATUS status;

    // Start is called before the first frame update
    void Start()
    {
        
    }

    // Update is called once per frame
    void Update()
    {
        /* ボタン長押し時の処理 */
        if (down == true)
        {
            this.transform.localScale = DOWN_SCALE;
            down_timer += Time.deltaTime;
        }
        else
        {
            this.transform.localScale = new Vector3(1, 1, 1); 

            if (down_timer &gt; 0)
            {
                if(DONW_LONG_TIME &lt;= down_timer)
                {

                }
                else
                {

                }
            }
    </description>
    <dc:date>2021-10-24T23:23:05+09:00</dc:date>
    <utime>1635085385</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/13.html">
    <title>初級講座/Androidビルド方法</title>
    <link>https://w.atwiki.jp/38unity/pages/13.html</link>
    <description>
      Please set the Package Name in the Player Settings.The value must follow the convention &#039;com.YourCompanyName.YourProductName&#039; and can contain alphanumeric characters and underscore Each segment must not start with a numeric character or underscore.

Google翻訳で直訳すると

プレーヤー設定でパッケージ名を設定してください。値は「com.YourCompanyName.YourProductName」の規則に従う必要があり、英数字とアンダースコアを含めることができます。各セグメントは数字またはアンダースコアで始めることはできません。    </description>
    <dc:date>2021-10-18T09:45:17+09:00</dc:date>
    <utime>1634517917</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/12.html">
    <title>初級講座/transform</title>
    <link>https://w.atwiki.jp/38unity/pages/12.html</link>
    <description>
      *目次
#contents()


*rotation
**degで角度指定
transform.rotation = Quaternion.Euler(0, -180, 0);

**指定した角度(deg)回転させる
[SerializeField] float ROTATE_SPEED;
this.transform.Rotate(new Vector3(0, 0, ROTATE_SPEED * Time.deltaTime));


* TextMeshPro
**宣言
using TMPro;
TextMeshProUGUI CT_TMP;
**タグ
https://baba-s.hatenablog.com/entry/2018/08/17/090100#%E5%9B%9E%E8%BB%A2-rotate    </description>
    <dc:date>2021-10-08T22:15:57+09:00</dc:date>
    <utime>1633698957</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/11.html">
    <title>初級講座/リスト</title>
    <link>https://w.atwiki.jp/38unity/pages/11.html</link>
    <description>
      **目次
#related


**宣言

[SerializeField] public List&lt;int&gt; ActorList = new List&lt;int&gt;();


全削除

ActorList.Clear();


リストの数（配列の**.Lengthに相当するもの）

ActorList.Count    </description>
    <dc:date>2021-10-08T18:11:43+09:00</dc:date>
    <utime>1633684303</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/10.html">
    <title>初級講座</title>
    <link>https://w.atwiki.jp/38unity/pages/10.html</link>
    <description>
      初級講座
#contents_line(初級講座)
#ls_line(初級講座)
&amp;ls_line(初級講座)
#ls(初級講座)    </description>
    <dc:date>2021-10-08T17:06:58+09:00</dc:date>
    <utime>1633680418</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/9.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/38unity/pages/9.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/921.html#id_476878da


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment
    </description>
    <dc:date>2021-10-08T16:47:43+09:00</dc:date>
    <utime>1633679263</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/8.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/38unity/pages/8.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2021-10-08T16:47:43+09:00</dc:date>
    <utime>1633679263</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/7.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/38unity/pages/7.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/801.html#id_30dcdc73

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2021-10-08T16:47:43+09:00</dc:date>
    <utime>1633679263</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/6.html">
    <title>プラグイン/アーカイブ</title>
    <link>https://w.atwiki.jp/38unity/pages/6.html</link>
    <description>
      * アーカイブ
@wikiのwikiモードでは
 #archive_log()
と入力することで、特定のウェブページを保存しておくことができます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/921.html#id_2d967d6e


-----


たとえば、#archive_log()と入力すると以下のように表示されます。
保存したいURLとサイト名を入力して&quot;アーカイブログ&quot;をクリックしてみよう


#archive_log()
    </description>
    <dc:date>2021-10-08T16:47:43+09:00</dc:date>
    <utime>1633679263</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/38unity/pages/5.html">
    <title>プラグイン/編集履歴</title>
    <link>https://w.atwiki.jp/38unity/pages/5.html</link>
    <description>
      * 更新履歴
@wikiのwikiモードでは
 #recent(数字)
と入力することで、wikiのページ更新履歴を表示することができます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/269.html#id_bf9eaeba


-----


たとえば、#recent(20)と入力すると以下のように表示されます。


#recent(20)
    </description>
    <dc:date>2021-10-08T16:47:43+09:00</dc:date>
    <utime>1633679263</utime>
  </item>
  </rdf:RDF>
