(Feat) Add Animation Fps Charater

This commit is contained in:
2026-08-13 22:07:08 +02:00
parent 176beab9fc
commit cca54a5e0d
157 changed files with 850 additions and 148 deletions
@@ -0,0 +1,36 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Blueprint/DragDropOperation.h"
#include "InventoryDragDropOperation.generated.h"
class UInventoryComponent;
/**
* Ce qui voyage entre la case qu'on saisit et celle ou on lache.
*
* On transporte un INDEX et non le contenu du slot : si l'inventaire change
* pendant le glisser (ramassage automatique, script), la cible relira l'etat
* reel au moment du drop au lieu d'appliquer une donnee perimee.
*/
UCLASS()
class EMBERWILD_API UInventoryDragDropOperation : public UDragDropOperation
{
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadOnly, Category = "Inventaire")
int32 SourceSlotIndex = INDEX_NONE;
/**
* Combien d'exemplaires on deplace. Egal a la pile entiere pour un
* glisser normal, la moitie avec Maj, un seul avec Ctrl.
*/
UPROPERTY(BlueprintReadOnly, Category = "Inventaire")
int32 Quantity = 0;
UPROPERTY(BlueprintReadOnly, Category = "Inventaire")
TWeakObjectPtr<UInventoryComponent> SourceInventory;
};