1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 23:11:54 +08:00
Files
Dog-Lynx-And-HCN/scripts/Contents/Bullets/AcidBulletBase.gd
T

18 lines
297 B
GDScript
Raw Normal View History

extends BulletBase
class_name AcidBulletBase
enum AcidType {
STRONG,
WEAK,
}
@export var acidType: AcidType = AcidType.STRONG
var arg1 = 0
var arg2 = 0
var arg3 = 0
func register():
scale.y *= MathTool.randomChoiceFrom([-1, 1])
func ai():
PresetBulletAI.forward(self, rotation)