Closed
Description
When I add this code with the #[property] macro, I'm not seeing the property show up in the Godot editor in the sidebar:
#[derive(GodotClass)]
#[class(base=CharacterBody3D)]
pub struct Player3D {
#[property]
speed: f32,
I tried this on 2 different classes and don't see it working on either. Is it currently supported?