Variable generated in Control rig class is visible but not gettable/settable

Howdy!

I’m trying to get a variable generated in code to be exposed to a control rig

i have this code below, i use this class as the parent class when generating a control rig. It is correctly displaying the variables in the defaults tab and if i expose inherited variables. But if i go to drag it into he graph editor it throws a warning

LogScript: Error: Script Msg: /Game/CR_MyControlRig : Cannot add variable ‘SomeScale’ with type ‘float’ - variable does not exist.

have attached a pic of the warning, showing that the varibale is showing up in the control rig

// Fill out your copyright notice in the Description page of Project Settings.

#pragma once

#include "CoreMinimal.h"
#include "ControlRig.h"
#include "MyControlRig .generated.h"

/**
 * 
 */
UCLASS(Blueprintable)
class PROJECT_API UMyControlRig : public UControlRig
{
	GENERATED_BODY()
protected:
	virtual void Initialize(bool bInitialize) override;
	virtual bool Execute(const FName& InEventName) override;

public:
	UPROPERTY(BlueprintReadWrite, Category="RigSettings")
	float SomeScale;
};

Have you tried initializing with a default value (i.e. SomeScale = 1)?