Show / Hide Table of Contents

Class VisualLoggerKismetLibrary

Visual Logger Kismet Library

Inheritance
System.Object
UObject
BlueprintFunctionLibrary
VisualLoggerKismetLibrary
Inherited Members
UObject.TransientPackage
UObject.CastTo<T>(UObject)
UObject.CastTo(UObject, Type)
UObject.RemoveObject(UObject)
UObject.MakeObjectArrayField<T>(NativeArray*)
UObject.NotImplemented<T>()
UObject.Construct()
UObject.GetHashCode()
UObject.GetName()
UObject.ToString()
UObject.Name
UObject._None
UObject.None
UObject.ObjPointer
UObject.LoadObjectFromClass(Class, UObject, String, String, LoadFlags, PackageMap, Boolean)
UObject.LoadClass(Class, UObject, String, String, LoadFlags, PackageMap)
UObject.GetPropertyFor<T>(Name)
UObject.ExecuteUbergraph
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: UE4.Engine
Assembly: UE4DotNet.dll
Syntax
public class VisualLoggerKismetLibrary : BlueprintFunctionLibrary

Properties

| Improve this Doc View Source

DefaultObject

Get UE4 Default Object for this Class

Declaration
public static VisualLoggerKismetLibrary DefaultObject { get; }
Property Value
Type Description
VisualLoggerKismetLibrary
| Improve this Doc View Source

StaticClass

Get UE4 Class

Declaration
public static Class StaticClass { get; }
Property Value
Type Description
Class

Methods

| Improve this Doc View Source

EnableRecording(Boolean)

Enable Recording

Declaration
public static void EnableRecording(bool bEnabled)
Parameters
Type Name Description
System.Boolean bEnabled
| Improve this Doc View Source

LogBox(UObject, Box, String, LinearColor, Name, Boolean)

Logs box shape - recording for Visual Logs has to be enabled to record this data

Declaration
public static void LogBox(UObject WorldContextObject, Box BoxShape, string Text, LinearColor ObjectColor, Name LogCategory, bool bAddToMessageLog)
Parameters
Type Name Description
UObject WorldContextObject
Box BoxShape
System.String Text
LinearColor ObjectColor
Name LogCategory
System.Boolean bAddToMessageLog
| Improve this Doc View Source

LogLocation(UObject, Vector, String, LinearColor, Single, Name, Boolean)

Logs location as sphere with given radius - recording for Visual Logs has to be enabled to record this data

Declaration
public static void LogLocation(UObject WorldContextObject, Vector Location, string Text, LinearColor ObjectColor, float Radius, Name LogCategory, bool bAddToMessageLog)
Parameters
Type Name Description
UObject WorldContextObject
Vector Location
System.String Text
LinearColor ObjectColor
System.Single Radius
Name LogCategory
System.Boolean bAddToMessageLog
| Improve this Doc View Source

LogSegment(UObject, Vector, Vector, String, LinearColor, Single, Name, Boolean)

Log Segment

Declaration
public static void LogSegment(UObject WorldContextObject, Vector SegmentStart, Vector SegmentEnd, string Text, LinearColor ObjectColor, float Thickness, Name CategoryName, bool bAddToMessageLog)
Parameters
Type Name Description
UObject WorldContextObject
Vector SegmentStart
Vector SegmentEnd
System.String Text
LinearColor ObjectColor
System.Single Thickness
Name CategoryName
System.Boolean bAddToMessageLog
| Improve this Doc View Source

LogText(UObject, String, Name, Boolean)

Logs simple text string with Visual Logger - recording for Visual Logs has to be enabled to record this data

Declaration
public static void LogText(UObject WorldContextObject, string Text, Name LogCategory, bool bAddToMessageLog)
Parameters
Type Name Description
UObject WorldContextObject
System.String Text
Name LogCategory
System.Boolean bAddToMessageLog
| Improve this Doc View Source

New(UObject, Name)

Spawn an object of this class

Declaration
public static VisualLoggerKismetLibrary New(UObject obj = null, Name name = default(Name))
Parameters
Type Name Description
UObject obj
Name name
Returns
Type Description
VisualLoggerKismetLibrary
| Improve this Doc View Source

RedirectVislog(UObject, UObject)

Makes SourceOwner log to DestinationOwner's vislog

Declaration
public static void RedirectVislog(UObject SourceOwner, UObject DestinationOwner)
Parameters
Type Name Description
UObject SourceOwner
UObject DestinationOwner

Operators

| Improve this Doc View Source

Implicit(IntPtr to VisualLoggerKismetLibrary)

Convert from IntPtr to UObject

Declaration
public static implicit operator VisualLoggerKismetLibrary(IntPtr p)
Parameters
Type Name Description
System.IntPtr p
Returns
Type Description
VisualLoggerKismetLibrary
  • Improve this Doc
  • View Source
Back to top Generated by DocFX