Loading [MathJax]/jax/output/HTML-CSS/config.js

【Unity】キャラクター操作その5 – レーザーソードで攻撃する

概要

前回(RobotKyleでいろい~その4~)ではRobotKyleにレーザーソードを持たせてソードをON/OFFさせるところまで実現しました。

今回はさらにRobotKyleにレーザーソードで攻撃する動作を付け加えていきたいと思います。

完成イメージ


Step1 : 攻撃Animationの調達

Unity Asset Storeにはソード系の攻撃Animationが沢山ありますが、今回はこのAssetを使用させて頂くことにしました。

https://assetstore.unity.com/packages/3d/animations/sword-and-shield-animations-pack-164596#reviews

RobotKyleにシールドは持たせてないですが、斬撃のアニメーションがダイナミックでカッコいいのでこれに決めました。Asset Storeからダウンロードし、PackageManagerからImportします。

Step2 : Animationの設定

Step1でインポートしたSword and Shield PackのFBXフォルダに入っているFBXのうち、Attack01とIdleをCtrl+Dで複製します。

複製されたファイル名はそのままでも構いませんが、後で見つけやすくするためにF2ボタンでSwordAttack、SwordIdleに名前を変更しておきます。

なお、このSword and Shield Packのアニメーションはインポートした時点でデフォルトでRigがHumanoidに設定されていますが、もし他のパッケージの攻撃アニメーションを使用する場合は複製する前にAnimation ClipのRigでAnimation TypeをHumanoidに設定しておいてください。

Step3 : SimpleAnimationへの紐づけ

今回もAnimationの再生はSimpleAnimationを使用してスクリプトで制御していきます。まずはInspectorでSimpleAnimationのスクリプトのSizeを6にした上でSwordAttackとSwordIdleを追加します。アニメーションクリップはStep2で準備したものを指定しておきます。

Step4 : 制御スクリプトの作成

ここでは前々回、前回で作成したキーボード操作による移動とソードON/OFFのスクリプトを統合しつつさらに攻撃アニメーションを制御するスクリプトを作成していきます。

具体的には以下の仕様を満たすコードにします。

  • 攻撃はレーザーソードをONにしてる時だけしか行えない制限をかける
  • レーザーソードをONしているときはSwordIdleでIdleし、OFFしているときは通常のIdleになるようにする
  • 移動中、ダッシュ中、ジャンプ中もソードONできるようにする
  • 移動中、ダッシュ中、ジャンプ中も攻撃できるようにする

次のようなコードになります。

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 
public class PlayerCon : MonoBehaviour
{
    // Start is called before the first frame update
 
    //Status
    [SerializeField] public bool onGround = true; //地面接地フラグ
    [SerializeField] public bool inJumping = false;//ジャンプ中フラグ
    [SerializeField] public bool inAttacking = false;//攻撃中フラグ
    [SerializeField] public bool withSwordsOn = false;//ソードONフラグ
    [SerializeField] public bool toSwordsOn = false;//ソードONにするフラグ
    [SerializeField] public bool inIdle = false;//Idle状態フラグ
    [SerializeField] public bool inRunning = false;//移動中フラグ
    [SerializeField] public bool inRotating = false;//移動中フラグ
    [SerializeField] public bool inSprinting = false;//ダッシュ中フラグ
    [SerializeField] public bool inSwordIdle = false;//ソードONのIdleフラグ
    [SerializeField] public bool inPushedSwordKey = false;//ソード有効化キー押下済みフラグ
    [SerializeField] public bool inPushedAttackKey = false;//ソード有効化キー押下済みフラグ
 
 
 
 
    //rb Variable
    Rigidbody rb;
 
    //Run speed
    float speed = 0.06f;
 
    //Sprint speed
    float sprintspeed = 0.09f;
 
 
    //Angle change speed
    float angleSpeed = 2;
 
    //variable
    float v;
    float h;
 
    //Defining SimpleAnimation
    SimpleAnimation simpleAnimation;
 
    //LaserSword
    GameObject laserswordObj;
 
 
 
 
    void Start()
    {
 
        //Rigidbodyコンポーネントの取得
        rb = this.GetComponent<Rigidbody>();
 
        //&#12503;&#12524;&#12452;&#12516;&#12540;&#12398;&#22238;&#36578;&#25233;&#27490;
        rb.constraints = RigidbodyConstraints.FreezeRotation;
 
        //&#12471;&#12531;&#12503;&#12523;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12467;&#12531;&#12509;&#12540;&#12493;&#12531;&#12488;&#12398;&#21462;&#24471;
        simpleAnimation = GetComponent<SimpleAnimation>();
 
        //LaserSword&#12458;&#12502;&#12472;&#12455;&#12463;&#12488;&#12398;&#21462;&#24471;
        laserswordObj = GameObject.Find("LaserSwordPrefab");
    }
 
    // Update is called once per frame
 
    void Update()
    {
        /*
         * &#12501;&#12521;&#12464;&#21021;&#26399;&#21270;
         */
        inRunning = false;
        inSprinting = false;
        inRotating = false;
 
        /*
         *&#22522;&#26412;&#21205;&#20316;&#21046;&#24481;&#37096;
         */
 
        //&#24038;&#12471;&#12501;&#12488;&#12461;&#12540;&#12391;&#12480;&#12483;&#12471;&#12517;&#12473;&#12500;&#12540;&#12489;&#12289;&#12381;&#12428;&#20197;&#22806;&#12399;&#12405;&#12388;&#12358;&#12398;&#12473;&#12500;&#12540;&#12489;&#12434;&#23450;&#32681;
        if (!inAttacking && !inJumping)
        {
 
            if (Input.GetKey(KeyCode.UpArrow) && Input.GetKey(KeyCode.LeftShift))
            {
                transform.position += transform.forward * sprintspeed;
                inSprinting = true;
            }
            else if (Input.GetKey(KeyCode.DownArrow) && Input.GetKey(KeyCode.LeftShift))
            {
                transform.position += transform.forward * -sprintspeed / 2;
                inSprinting = true;
            }
            else if (Input.GetKey(KeyCode.UpArrow))
            {
                transform.position += transform.forward * speed;
                inRunning = true;
            }
            else if (Input.GetKey(KeyCode.DownArrow))
            {
                transform.position += transform.forward * -speed / 2;
                inRunning = true;
            }
        }
 
        //&#26059;&#22238;&#21205;&#20316;
        if (Input.GetKey(KeyCode.RightArrow))
        {
            transform.Rotate(Vector3.up * angleSpeed);
            inRotating = true;
        }
        else if (Input.GetKey(KeyCode.LeftArrow))
        {
            transform.Rotate(Vector3.up * -angleSpeed);
            inRotating = true;
        }
 
        //&#12472;&#12515;&#12531;&#12503;&#21205;&#20316;
        //&#12473;&#12506;&#12540;&#12473;&#12461;&#12540;&#12364;&#25276;&#12373;&#12428;&#12390;&#12289;&#22320;&#38754;&#12395;&#35373;&#23450;&#12375;&#12390;&#12356;&#12427;&#12392;&#12365;
        if (Input.GetKey(KeyCode.Space) && onGround)
        {
            //&#36895;&#24230;&#12434;&#19968;&#26086;0&#12395;&#21021;&#26399;&#21270;
            rb.velocity = new Vector3(0, 0, 0);
 
            //&#19978;&#65288;&#12472;&#12515;&#12531;&#12503;&#12391;&#19978;&#12364;&#12427;&#26041;&#21521;&#65289;&#12395;&#21147;&#12434;&#30330;&#29983;
            rb.AddForce(transform.up * 600);
 
 
            //&#31227;&#21205;&#20013;&#12395;&#12472;&#12515;&#12531;&#12503;&#12508;&#12479;&#12531;&#12434;&#25276;&#12375;&#12383;&#22580;&#21512;&#12399;&#26012;&#12417;&#12395;&#12472;&#12515;&#12531;&#12503;&#12373;&#12379;&#12427;&#12383;&#12417;&#21069;&#26041;&#26041;&#21521;&#12408;&#12418;&#12381;&#12428;&#12382;&#12428;&#21147;&#12434;&#30330;&#29983;
            //&#12480;&#12483;&#12471;&#12517;&#20013;&#12392;&#12405;&#12388;&#12358;&#12398;&#31227;&#21205;&#12391;&#30330;&#29983;&#12373;&#12379;&#12427;&#21147;&#12434;&#22793;&#12360;&#12427;
            if (Input.GetKey(KeyCode.UpArrow) && Input.GetKey(KeyCode.LeftShift))
            {
                rb.AddForce(transform.forward * 250);
            }
            else if (Input.GetKey(KeyCode.UpArrow))
            {
                rb.AddForce(transform.forward * 180);
            }
            else if (Input.GetKey(KeyCode.DownArrow))
            {
                rb.AddForce(transform.forward * -100);
            }
            //&#22320;&#38754;&#25509;&#22320;&#12501;&#12521;&#12464;&#12434;false&#12395;
            onGround = false;
 
            //&#12472;&#12515;&#12531;&#12503;&#12501;&#12521;&#12464;&#12434;true&#12395;
            inJumping = true;
        }
 
 
        if (Input.GetKeyDown(KeyCode.C))
        {
            inPushedSwordKey = true;
        }
 
        if (Input.GetKeyDown(KeyCode.Z))
        {
            inPushedAttackKey = true;
        }
 
        /*
         *&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#21046;&#24481;&#37096;
         */
 
        //LaserSword&#12398;&#12473;&#12463;&#12522;&#12503;&#12488;&#21462;&#24471;
        DigitalRuby.LaserSword.LaserSwordScript laserSwordScript = laserswordObj.GetComponent<DigitalRuby.LaserSword.LaserSwordScript>();
 
        //&#25915;&#25731;&#21205;&#20316;&#12398;&#26368;&#20013;&#65288;80%&#23436;&#20102;&#12414;&#12391;&#65289;&#12399;&#25915;&#25731;&#20013;&#12501;&#12521;&#12464;&#12434;&#20445;&#25345;&#12377;&#12427;&#12424;&#12358;&#12395;&#12377;&#12427;
        if (simpleAnimation.GetState("SwordAttack").normalizedTime >= 0.8)
        {
            inAttacking = false;
        }
 
        //&#9312;&#12371;&#12371;&#12363;&#12425;&#12399;&#21069;&#26041;&#24460;&#26041;&#31227;&#21205;&#20013;&#12398;&#22580;&#21512;&#12398;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12398;&#21046;&#24481;
        //&#21069;&#26041;&#24460;&#26041;&#31227;&#21205;&#12461;&#12540;&#12364;&#25276;&#12373;&#12428;&#12383;&#12392;&#12365;
        if (inPushedSwordKey)
        {
            if (!withSwordsOn)//&#29694;&#22312;&#12477;&#12540;&#12489;OFF&#29366;&#24907;&#12398;&#12392;&#12365;
            {
                toSwordsOn = true;//&#12477;&#12540;&#12489;ON&#12501;&#12521;&#12464;&#12434;true&#12395;
            }
            else if (withSwordsOn)//&#29694;&#22312;&#12477;&#12540;&#12489;ON&#29366;&#24907;&#12398;&#12392;&#12365;
            {
                toSwordsOn = false;//&#12477;&#12540;&#12489;ON&#12501;&#12521;&#12464;&#12434;false&#12395;
            }
        }
 
        //&#12477;&#12540;&#12489;&#12364;ON&#12391;&#25915;&#25731;&#12508;&#12479;&#12531;&#12364;&#25276;&#12373;&#12428;&#12383;&#12392;&#12365;
        if (withSwordsOn && inPushedAttackKey)
        {
            //&#25915;&#25731;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#20877;&#29983;
            simpleAnimation.CrossFade("SwordAttack", 0.1f);
 
            //&#25915;&#25731;&#12461;&#12540;&#25276;&#19979;&#28168;&#12415;&#12501;&#12521;&#12464;&#12434;false&#12395;
            inPushedAttackKey = false;
 
            //&#25915;&#25731;&#20013;&#12501;&#12521;&#12464;&#12434;true&#12395;
            inAttacking = true;
        }
        //&#31227;&#21205;&#20013;&#12501;&#12521;&#12464;&#12418;&#12375;&#12367;&#12399;&#12480;&#12483;&#12471;&#12517;&#20013;&#12501;&#12521;&#12464;&#12364;&#20013;&#12398;&#12392;&#12365;
        else if (inRunning || inSprinting)
        {
            //&#12472;&#12515;&#12531;&#12503;&#20013;&#12501;&#12521;&#12464;&#12364;true&#12398;&#12392;&#12365;
            if (inJumping)
            {
                //&#12472;&#12515;&#12531;&#12503;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#20877;&#29983;
                simpleAnimation.CrossFade("Jump", 0.1f);
 
            }
            else if (inAttacking) { }//&#25915;&#25731;&#20013;&#12398;&#22580;&#21512;&#12399;&#29305;&#12395;&#20309;&#12418;&#12379;&#12378;(&#25915;&#25731;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#20778;&#20808;)
            else if (inSprinting)
            {
                //&#12473;&#12503;&#12522;&#12531;&#12488;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#20877;&#29983;
                simpleAnimation.CrossFade("Sprint", 0.1f);
            }
            else//&#36890;&#24120;&#31227;&#21205;&#12398;&#22580;&#21512;
            {
                //&#31227;&#21205;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#20877;&#29983;
                simpleAnimation.CrossFade("Run", 0.1f);
            }
             
        }
        //&#12472;&#12515;&#12531;&#12503;&#20013;&#12391;&#25915;&#25731;&#20013;&#12391;&#12394;&#12356;&#12392;&#12365;
        else if (inJumping && !inAttacking)
        {
            //&#12472;&#12515;&#12531;&#12503;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#20877;&#29983;
            simpleAnimation.CrossFade("Jump", 0.1f);
        }
        else
        {
            if (inAttacking) { }//&#25915;&#25731;&#20013;&#12399;&#25915;&#25731;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#32153;&#32154;
            else if (inJumping) { }//&#12472;&#12515;&#12531;&#12503;&#20013;&#12399;&#12472;&#12515;&#12531;&#12503;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#32153;&#32154;
            else if (inPushedSwordKey) { }//&#12477;&#12540;&#12489;ON/OFF&#12461;&#12540;&#25276;&#19979;&#20013;&#12418;&#20170;&#12398;&#12450;&#12491;&#12513;&#12540;&#12471;&#12519;&#12531;&#12434;&#32153;&#32154;
            else//&#12381;&#12428;&#20197;&#22806;
            {  
                //&#12477;&#12540;&#12489;&#12434;ON&#12375;&#12390;&#12356;&#12427;&#12392;&#12365;
                if (withSwordsOn)
                {
                    //SwordIdlw&#12434;&#20877;&#29983;
                    simpleAnimation.CrossFade("SwordIdle", 0.1f);
                }
                else
                {
                    //&#12405;&#12388;&#12358;&#12398;Idle&#12434;&#20877;&#29983;
                    simpleAnimation.CrossFade("Default", 0.1f);
                }
            }
        }
 
        /*
         * &#12371;&#12371;&#12363;&#12425;&#12477;&#12540;&#12489;&#12398;ON/OFF&#21046;&#24481;
         */
        //&#12477;&#12540;&#12489;ON/OFF&#12461;&#12540;&#12364;&#25276;&#19979;&#12373;&#12428;&#12289;&#25915;&#25731;&#12514;&#12540;&#12471;&#12519;&#12531;&#20013;&#12391;&#12394;&#12356;&#22580;&#21512;
        if (inPushedSwordKey && !inAttacking)
        {
            //&#12477;&#12540;&#12489;ON&#12501;&#12521;&#12464;&#12364;true&#12394;&#12425;
            if (toSwordsOn)
            {
                //&#12524;&#12540;&#12470;&#12540;&#12477;&#12540;&#12489;&#12434;Acfivate
                laserSwordScript.Activate();
                //&#12477;&#12540;&#12489;ON&#20013;&#12501;&#12521;&#12464;&#12434;true&#12395;
                withSwordsOn = true;
                //&#12477;&#12540;&#12489;ON/OFF&#12461;&#12540;&#12501;&#12521;&#12464;&#12434;false&#12395;
                inPushedSwordKey = false;
                //&#12477;&#12540;&#12489;ON&#20104;&#23450;&#12501;&#12521;&#12464;&#12434;false&#12395;
                toSwordsOn = false;
            }
            else//&#12477;&#12540;&#12489;ON&#12501;&#12521;&#12464;&#12364;false&#12394;&#12425;
            {
                //&#12524;&#12540;&#12470;&#12540;&#12477;&#12540;&#12489;&#12434;Deactivate
                laserSwordScript.Deactivate();
                //&#12477;&#12540;&#12489;ON/OFF&#12461;&#12540;&#12501;&#12521;&#12464;&#12434;false&#12395;
                withSwordsOn = false;
                //&#12477;&#12540;&#12489;ON/OFF&#12461;&#12540;&#12501;&#12521;&#12464;&#12434;false&#12395;
                inPushedSwordKey = false;
            }
        }
 
    }
 
    void OnCollisionEnter(Collision col)
    {
        if (col.gameObject.tag == "Ground")
        {
            onGround = true;
            inJumping = false;
            simpleAnimation.Stop("Jump");
        }
    }

上記スクリプトをRobotKyleにアタッチしてGameを実行すると冒頭のgifのような動作ができます。

以上

Unityを一から学ぶのにおすすめの本はコチラ

おすすめ

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です