Exemplo n.º 1
0
/// <summary>
/// Sets the defining data for all trails in this component.
/// @param        InFirstSocketName       The name of the first socket for the trail.
/// @param        InSecondSocketName      The name of the second socket for the trail.
/// @param        InWidthMode                     How the width value is applied to the trail.
/// @param        InWidth                         The width of the trail.
/// </summary>
        public void SetTrailSourceData(string InFirstSocketName, string InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth)
        {
            CheckIsValid();
            SetTrailSourceData(_this.Get(), InFirstSocketName, InSecondSocketName, (int)InWidthMode, InWidth);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Begins all trail emitters in this component.
 /// @param        InFirstSocketName       The name of the first socket for the trail.
 /// @param        InSecondSocketName      The name of the second socket for the trail.
 /// @param        InWidthMode                     How the width value is applied to the trail.
 /// @param        InWidth                         The width of the trail.
 /// </summary>
 public extern void BeginTrails(FName InFirstSocketName, FName InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth);
Exemplo n.º 3
0
/// <summary>
/// Begins all trail emitters in this component.
/// @param        InFirstSocketName       The name of the first socket for the trail.
/// @param        InSecondSocketName      The name of the second socket for the trail.
/// @param        InWidthMode                     How the width value is applied to the trail.
/// @param        InWidth                         The width of the trail.
/// </summary>
        public void BeginTrails(string InFirstSocketName, string InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth)
        {
            CheckIsValid();
            BeginTrails(_this.Get(), InFirstSocketName, InSecondSocketName, (int)InWidthMode, InWidth);
        }
Exemplo n.º 4
0
 /// <summary>
 /// Sets the defining data for all trails in this component.
 /// @param        InFirstSocketName       The name of the first socket for the trail.
 /// @param        InSecondSocketName      The name of the second socket for the trail.
 /// @param        InWidthMode                     How the width value is applied to the trail.
 /// @param        InWidth                         The width of the trail.
 /// </summary>
 public extern void SetTrailSourceData(FName InFirstSocketName, FName InSecondSocketName, ETrailWidthMode InWidthMode, float InWidth);