Add override keywords.
This commit is contained in:
parent
ad9e5ae984
commit
26fcf2b04c
351 changed files with 4123 additions and 4146 deletions
|
|
@ -70,7 +70,7 @@ private:
|
|||
|
||||
protected:
|
||||
static void _bind_methods();
|
||||
virtual void _validate_property(PropertyInfo &property) const;
|
||||
virtual void _validate_property(PropertyInfo &property) const override;
|
||||
|
||||
public:
|
||||
void set_noise(Ref<OpenSimplexNoise> p_noise);
|
||||
|
|
@ -88,13 +88,13 @@ public:
|
|||
void set_bump_strength(float p_bump_strength);
|
||||
float get_bump_strength();
|
||||
|
||||
int get_width() const;
|
||||
int get_height() const;
|
||||
int get_width() const override;
|
||||
int get_height() const override;
|
||||
|
||||
virtual RID get_rid() const;
|
||||
virtual bool has_alpha() const { return false; }
|
||||
virtual RID get_rid() const override;
|
||||
virtual bool has_alpha() const override { return false; }
|
||||
|
||||
virtual Ref<Image> get_data() const;
|
||||
virtual Ref<Image> get_data() const override;
|
||||
|
||||
NoiseTexture();
|
||||
virtual ~NoiseTexture();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue