The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

0 votes

I'm a complete noob and have been following this tutorial - https://www.youtube.com/watch?v=WEt2JHEe-do&t=4078s and I would differ from the tut and add a mechanic where the enemies get larger as time progresses to make it harder. But, sense I'm a noob, I don't know how to do that. I did try this though:

extends RigidBody2D

export var minspeed = 150.0
export var max
speed = 250.0
var size = $AnimatedSprite.scale(2, 2)
var size_collision = $Collision.scale(2,2)

func ready():
$AnimatedSprite.playing = true
var mob
types = $AnimatedSprite.frames.getanimationnames()
$AnimatedSprite.animation = mobtypes[randi() % mobtypes.size()]

func onVisibilityNotifier2Dscreenexited() -> void:
queue_free()

func onSizeTimertimeout() -> void:
size += 1
size
collision += 1

and it no work :/ error message was: attempt to call function 'scale' in base 'null instance' on a null instance

in Engine by (16 points)

1 Answer

+1 vote

var size = $AnimatedSprite.scale(2, 2) # error
==>
onready var size = $AnimatedSprite

var a : int # 0 // write 1 here
var b : int # 0 // write 1 here
func onSizeTimertimeout():
a += 1
b += 1
size.scale = vector2(a,b)

by (785 points)
edited by
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.