Was wondering if play test was a reserved word that wouldn’t work, but it show up
I just have this in my header
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimInstance.h"
#include "AnimationInstance.generated.h"
/**
*
*/
UCLASS()
class RIDERHOT_API UAnimationInstance : public UAnimInstance
{
GENERATED_BODY()
public:
UFUNCTION(BlueprintCallable, meta = (BlueprintThreadSafe))
void UpdateView(){ };
UFUNCTION(BlueprintCallable, meta = (BlueprintThreadSafe))
void PlayTest(){ };
};
Tested out in rider with hot reload
