コード例 #1
0
        public UAbilitySystemComponent        Target;        // Target we intend to apply to

        public FGameplayEffectModCallbackData(FGameplayEffectSpec InEffectSpec,
                                              FGameplayModifierEvaluatedData InEvaluatedData, UAbilitySystemComponent InTarget)
        {
            EffectSpec    = InEffectSpec;
            EvaluatedData = InEvaluatedData;
            Target        = InTarget;
        }
コード例 #2
0
 public FActiveGameplayEffectHandle ApplyGameplayEffectSpecToSelf(FGameplayEffectSpec GameplayEffect)
 {
     return(null);
 }
コード例 #3
0
        // ----------------------------------------------------------------------------------------------------------------
        //
        //	GameplayEffects
        //
        // ----------------------------------------------------------------------------------------------------------------

        // --------------------------------------------
        // Primary outward facing API for other systems:
        // --------------------------------------------
        public FActiveGameplayEffectHandle ApplyGameplayEffectSpecToTarget(FGameplayEffectSpec GameplayEffect,
                                                                           UAbilitySystemComponent Target)
        {
            return(null);
        }
コード例 #4
0
 // ---------------------------------------------------------------------------------------------------------------------------------
 //  IMPORTANT: Any new state added to FActiveGameplayEffect must be handled in the copy/move constructor/operator
 //	(When VS2012/2013 support is dropped, we can use compiler generated operators, but until then these need to be maintained manually)
 // ---------------------------------------------------------------------------------------------------------------------------------
 FActiveGameplayEffect(FActiveGameplayEffectHandle InHandle, FGameplayEffectSpec InSpec,
                       float CurrentWorldTime, float InStartServerWorldTime)
 {
 }
コード例 #5
0
 /** Returns true if Effect matches all specified criteria of this query. This does NOT check FActiveGameplayEffectQueryCustomMatch since this is performed on the spec (possibly prior to applying).
  *	Note: it would be reasonable to support a custom delegate that operated on the FGameplayEffectSpec itself.
  */
 public bool Matches(FGameplayEffectSpec Effect)
 {
     return(false);
 }
コード例 #6
0
 /** Updates the aggregators for the past in handle, this will handle it so the UAttributeSets stats only get one update for the delta change */
 public void UpdateAggregatorMod(FActiveGameplayEffectHandle ActiveHandle, FGameplayAttribute Attribute,
                                 FGameplayEffectSpec Spec, bool bWasLocallyGenerated, FActiveGameplayEffectHandle InHandle)
 {
 }
コード例 #7
0
 // Copies SetbyCallerMagnitudes from OriginalSpec into this
 public void CopySetByCallerMagnitudes(FGameplayEffectSpec OriginalSpec)
 {
 }
コード例 #8
0
 // Initialize the spec as a linked spec. The original spec's context is preserved except for the original GE asset tags, which are stripped out
 public void InitializeFromLinkedSpec(UGameplayEffect InDef, FGameplayEffectSpec OriginalSpec)
 {
 }
コード例 #9
0
 FGameplayEffectSpec(FGameplayEffectSpec Other, FGameplayEffectContextHandle InEffectContext)
 {
 }
コード例 #10
0
 FGameplayEffectSpecHandle(FGameplayEffectSpec DataPtr)
 {
 }