vault backup: 2024-10-12 17:19:45

This commit is contained in:
2024-10-12 17:19:46 +08:00
parent ff94ddca61
commit 244c0c52f6
960 changed files with 31348 additions and 10 deletions

View File

@@ -0,0 +1,6 @@
# FUNC_BlueprintAuthorityOnly
Value: 0x00000004
Description: Function will only run if the object has network authority
Feature: Network
UFUNCTION/UDELEGATE: BlueprintAuthorityOnly (../../Specifier/UFUNCTION/BlueprintAuthorityOnly.md)

View File

@@ -0,0 +1,6 @@
# FUNC_BlueprintCallable
Value: 0x04000000
Description: function can be called from blueprint code
Feature: Blueprint
UFUNCTION/UDELEGATE: BlueprintGetter (../../Specifier/UFUNCTION/BlueprintGetter.md), BlueprintPure (../../Specifier/UFUNCTION/BlueprintPure.md), BlueprintSetter (../../Specifier/UFUNCTION/BlueprintSetter.md), BlueprintCallable (../../Specifier/UFUNCTION/BlueprintCallable.md)

View File

@@ -0,0 +1,6 @@
# FUNC_BlueprintCosmetic
Value: 0x00000008
Description: Function is cosmetic in nature and should not be invoked on dedicated servers
Feature: Network
UFUNCTION/UDELEGATE: BlueprintCosmetic (../../Specifier/UFUNCTION/BlueprintCosmetic.md)

View File

@@ -0,0 +1,6 @@
# FUNC_BlueprintEvent
Value: 0x08000000
Description: function can be overridden/implemented from a blueprint
Feature: Blueprint
UFUNCTION/UDELEGATE: BlueprintImplementableEvent (../../Specifier/UFUNCTION/BlueprintImplementableEvent.md), BlueprintNativeEvent (../../Specifier/UFUNCTION/BlueprintNativeEvent.md)

View File

@@ -0,0 +1,6 @@
# FUNC_BlueprintPure
Value: 0x10000000
Description: function can be called from blueprint code, and is also pure (produces no side effects). If you set this, you should set FUNC_BlueprintCallable as well.
Feature: Blueprint
UFUNCTION/UDELEGATE: BlueprintGetter (../../Specifier/UFUNCTION/BlueprintGetter.md), BlueprintPure (../../Specifier/UFUNCTION/BlueprintPure.md)

View File

@@ -0,0 +1,5 @@
# FUNC_Const
Value: 0x40000000
Description: function can be called from blueprint code, and only reads state (never writes state)
Feature: Trait

View File

@@ -0,0 +1,5 @@
# FUNC_DLLImport
Value: 0x02000000
Description: function is imported from a DLL
Feature: Dll

View File

@@ -0,0 +1,5 @@
# FUNC_Delegate
Value: 0x00100000
Description: Function is delegate signature (either single-cast or multi-cast, depending on whether FUNC_MulticastDelegate is set.)
Feature: Trait

View File

@@ -0,0 +1,5 @@
# FUNC_EditorOnly
Value: 0x20000000
Description: function can only be called from an editor scrippt.
Feature: Trait

View File

@@ -0,0 +1,6 @@
# FUNC_Event
Value: 0x00000800
Description: Event function.
Feature: Trait
UFUNCTION/UDELEGATE: BlueprintImplementableEvent (../../Specifier/UFUNCTION/BlueprintImplementableEvent.md), BlueprintNativeEvent (../../Specifier/UFUNCTION/BlueprintNativeEvent.md), ServiceRequest (../../Specifier/UFUNCTION/ServiceRequest.md), ServiceResponse (../../Specifier/UFUNCTION/ServiceResponse.md)

View File

@@ -0,0 +1,6 @@
# FUNC_Exec
Value: 0x00000200
Description: Executable from command line.
Feature: Trait
UFUNCTION/UDELEGATE: Exec (../../Specifier/UFUNCTION/Exec.md)

View File

@@ -0,0 +1,6 @@
# FUNC_Final
Value: 0x00000001
Description: Function is final (prebindable, non-overridable function).
Feature: Trait
UFUNCTION/UDELEGATE: SealedEvent (../../Specifier/UFUNCTION/SealedEvent.md)

View File

@@ -0,0 +1,6 @@
# FUNC_HasDefaults
Value: 0x00800000
Description: function has structs that contain defaults
Feature: Trait
USTRUCT: HasDefaults (../../Specifier/USTRUCT/HasDefaults.md)

View File

@@ -0,0 +1,5 @@
# FUNC_HasOutParms
Value: 0x00400000
Description: function has out (pass by reference) parameters
Feature: Trait

View File

@@ -0,0 +1,5 @@
# FUNC_MulticastDelegate
Value: 0x00010000
Description: Function is a multi-cast delegate signature (also requires FUNC_Delegate to be set!)
Feature: Trait

View File

@@ -0,0 +1,6 @@
# FUNC_Native
Value: 0x00000400
Description: Native function.
Feature: Trait
UFUNCTION/UDELEGATE: BlueprintImplementableEvent (../../Specifier/UFUNCTION/BlueprintImplementableEvent.md)

View File

@@ -0,0 +1,6 @@
# FUNC_Net
Value: 0x00000040
Description: Function is network-replicated.
Feature: Network
UFUNCTION/UDELEGATE: Client (../../Specifier/UFUNCTION/Client.md), NetMulticast (../../Specifier/UFUNCTION/NetMulticast.md), Server (../../Specifier/UFUNCTION/Server.md), ServiceRequest (../../Specifier/UFUNCTION/ServiceRequest.md), ServiceResponse (../../Specifier/UFUNCTION/ServiceResponse.md)

View File

@@ -0,0 +1,6 @@
# FUNC_NetClient
Value: 0x01000000
Description: function is executed on clients
Feature: Network
UFUNCTION/UDELEGATE: Client (../../Specifier/UFUNCTION/Client.md)

View File

@@ -0,0 +1,6 @@
# FUNC_NetMulticast
Value: 0x00004000
Description: Function is networked multicast Server -> All Clients
Feature: Network
UFUNCTION/UDELEGATE: NetMulticast (../../Specifier/UFUNCTION/NetMulticast.md)

View File

@@ -0,0 +1,6 @@
# FUNC_NetReliable
Value: 0x00000080
Description: Function should be sent reliably on the network.
Feature: Network
UFUNCTION/UDELEGATE: Reliable (../../Specifier/UFUNCTION/Reliable.md), ServiceRequest (../../Specifier/UFUNCTION/ServiceRequest.md), ServiceResponse (../../Specifier/UFUNCTION/ServiceResponse.md)

View File

@@ -0,0 +1,6 @@
# FUNC_NetRequest
Value: 0x00000100
Description: Function is sent to a net service
Feature: Network
UFUNCTION/UDELEGATE: ServiceRequest (../../Specifier/UFUNCTION/ServiceRequest.md)

View File

@@ -0,0 +1,6 @@
# FUNC_NetResponse
Value: 0x00001000
Description: Function response from a net service
Feature: Network
UFUNCTION/UDELEGATE: ServiceResponse (../../Specifier/UFUNCTION/ServiceResponse.md)

View File

@@ -0,0 +1,6 @@
# FUNC_NetServer
Value: 0x00200000
Description: Function is executed on servers (set by replication code if passes check)
Feature: Network
UFUNCTION/UDELEGATE: Server (../../Specifier/UFUNCTION/Server.md)

View File

@@ -0,0 +1,6 @@
# FUNC_NetValidate
Value: 0x80000000
Description: function must supply a _Validate implementation
Feature: Network
UFUNCTION/UDELEGATE: WithValidation (../../Specifier/UFUNCTION/WithValidation.md)

View File

@@ -0,0 +1,5 @@
# FUNC_Private
Value: 0x00040000
Description: Function is accessible only in the class it is defined in (cannot be overridden, but function name may be reused in subclasses. IOW: if overridden, parameters don't need to match, and Super.Func() cannot be accessed since it's private.)
Feature: Trait

View File

@@ -0,0 +1,5 @@
# FUNC_Protected
Value: 0x00080000
Description: Function is accessible only in the class it is defined in and subclasses (if overridden, parameters much remain unchanged).
Feature: Trait

View File

@@ -0,0 +1,5 @@
# FUNC_Public
Value: 0x00020000
Description: Function is accessible in all classes (if overridden, parameters must remain unchanged).
Feature: Trait

View File

@@ -0,0 +1,5 @@
# FUNC_RequiredAPI
Value: 0x00000002
Description: Indicates this function is DLL exported/imported.
Feature: Dll

View File

@@ -0,0 +1,4 @@
# FUNC_Static
Value: 0x00002000
Description: Static function.

View File

@@ -0,0 +1,5 @@
# FUNC_UbergraphFunction
Value: 0x00008000
Description: Function is used as the merge 'ubergraph' for a blueprint, only assigned when using the persistent 'ubergraph' frame
Feature: Blueprint