Godot Version
4.2.1
Question
I am not sure what is going on but all of the sudden my @exported lines are not showing up anymore for my CharacterBody3D Node.
Is this a known bug? I have done read the documentation at GDScript exported properties β Godot Engine (stable) documentation in English and from what I gather everything is done correctly?
the code in question (example) is:
extends CharacterBody3D
# MOVEMENT VARIABLES
@export_group("Movement Modifiers")
@export var default_speed = 5.0
@export var crouching_speed = 2.0
@export var jump_velocity = 4.5
var is_crouching : bool = false
var _speed : float
yet I do not see the variables in the Inspector:
Thank you for any assistance!