LoginSignup
1
0

More than 3 years have passed since last update.

bulletml.jsの研究 その7

Posted at

概要

bulletml.jsの研究です。
技を調査。

全方位

<bulletml>
    <action label="top">
        <repeat>
            <times>22</times>
            <action>
                <fire>
                <direction type="aim">-30</direction>
                <bullet>
                        <action>
                            <changeDirection>
                            <direction type="sequence">0</direction>
                            <term>0</term>
                            </changeDirection>
                        </action>
                    </bullet>
                </fire>
                <repeat>
                    <times>35</times>
                    <action>
                        <fire>
                        <direction type="sequence">10</direction>
                        <bullet>
                                <action>
                                    <changeDirection>
                                    <direction type="sequence">0</direction>
                                    <term>0</term>
                                    </changeDirection>
                                </action>
                            </bullet>
                        </fire>
                        <wait>0</wait>
                    </action>
                </repeat> 
                <wait>120</wait>
            </action>
        </repeat>
    </action>
</bulletml>


n-wayの派生型で、全周に向けて一斉に発射する攻撃です。

成果物

以上。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0