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 3 years have passed since last update.

bulletml.jsの研究 その5

Last updated at Posted at 2021-01-27

#概要

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

#固定方向弾

<bulletml>
	<action label="top">
		<repeat>
			<times>222</times>
			<action>
 				<fire>
  				<direction type="sequence">23</direction>
	  			<bullet>
						<action>
 							<wait>20 + $rand * 50</wait>
 							<changeDirection>
  					  		   <direction type="absolute">180</direction>
  							   <term>20</term>
 							</changeDirection>
						</action>
					</bullet>
 				</fire>
 				<wait>3</wait>
			</action>
		</repeat>
	</action>
</bulletml>
</textarea>

自機狙いに対し、自機の位置に依存しない攻撃です。
単発ではあまり意味をなしませんが、規則的にたくさんの固定方向弾を配置することで、障害物として機能させることも出来ます。

#成果物

以上。

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?