This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes
extends Node2D

enum Check {
    right,
    left,
    down,
    up
}

var my_enum : Check

that does not work: the identifier Check is not a valid type (not a script, or class)

Godot version 3.3.2
in Engine by (173 points)

1 Answer

0 votes

Enum in GDScrpt is a kind of controversial right now and can't be used as type, it works like namespaced const

enum Check {
    right,
    left,
    down,
    up
}
var my_enum : int = Check.right

https://github.com/godotengine/godot/issues/20368
But they're planning to improve it in 4.0

by (1,646 points)
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.