0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bulletml.jsの研究 その6

0
Posted at

概要

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

n-way

<bulletml>
	<action label="top">
		<repeat>
			<times>22</times>
			<action>
 				<fire>
  				<direction type="aim">-30</direction>
	  			<bullet>
						<action>
 							<changeDirection>
  							<direction type="sequence">0</direction>
  							<term>20</term>
 							</changeDirection>
						</action>
					</bullet>
 				</fire>
				<repeat>
					<times>4</times>
					<action>
 						<fire>
  						<direction type="sequence">15</direction>
	  					<bullet>
								<action>
 									<changeDirection>
  									<direction type="sequence">0</direction>
  									<term>20</term>
 									</changeDirection>
								</action>
							</bullet>
 						</fire>
 						<wait>3</wait>
					</action>
				</repeat> 
 				<wait>30</wait>
			</action>
		</repeat>
	</action>
</bulletml>

一度に複数の方向へ等間隔に発射する攻撃です。
発射弾数によって5way、7wayなどと呼びます。
間隔、発射弾数、発射方向の自機依存/非依存や偶数/奇数などでバリエーションを広げていきます。

成果物

以上。

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?