Making a varible editable in the inspector

#Tutorial

I have an entire tutorial on this!

Make C++ Vars for Use in BP

#Code

/** What is the Player's current musical skill level? */
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category=PlayerMusicSkill)
int32 MusicSkillLevel;

#More Options

In my tutorial