enum_float_value.gd 89 B

1234567
  1. enum Size {
  2. # Error here. Enum values must be integers.
  3. S = 0.0,
  4. }
  5. func test():
  6. pass