jagomart
digital resources
picture1_Unreal Engine C Plus Plus Cheat Sheet


 141x       Filetype PDF       File size 0.05 MB       Source: uecasts.com


File: Unreal Engine C Plus Plus Cheat Sheet
uecasts com ue4 c cheat sheet uproperty uproperty visibleanywhere category player typename prefix example multicast delegates only exposes property for assigning in blueprintassignable aactor a acharacter blueprints blueprintcallable boolean b ...

icon picture PDF Filetype PDF | Posted on 31 Jan 2023 | 2 years ago
Partial capture of text on file.
                                         UECasts.com - UE4 C++ Cheat Sheet
                 UPROPERTY                   UPROPERTY(VisibleAnywhere, Category='Player')                TypeName     Prefix                  Example
                                     Multicast Delegates only. Exposes property for assigning in 
      BlueprintAssignable                                                                               AActor           A     ACharacter
                                     Blueprints
      BlueprintCallable                                                                                 Boolean          b     bool bIsTeaDelicious;
                                     Multicast Delegates only. Property exposed for calling in Blueprints
      BlueprintReadOnly                                                                                 Enums            E     enum EPlayerType;
                                     Readable from blueprints, but not writeable
      BlueprintReadWrite                                                                                Interfaces       I     INetworkConnection
                                     Read or writeable from blueprints
      Category                                                                                          Struct           F     FMyStruct;
                                     Category of the property. Nested categories with | operator
      EditAnywhere                                                                                      SWidget          S     SMyWidget;
                                     Can be edited by property windows, on archetypes & instances
      EditDefaultsOnly                                                                                  Template         T     TArray MyIntArray;
                                     Edited by property windows, but only on archetypes
      EditFixedSize                                                                                     UObject          U     UCameraComponent * ThirdPersonCamera;
                                     Prevent changing the length of an array (useful for dynamic arrays)
      EditInstanceOnly
                                     Edited by property windows, but only on instances, not on archetypes
      Transient
                                     Should not be saved, zero-filled at load time
      VisibleAnywhere
                                     Visible in property windows, but can't be edited at all               Naming & Coding Standards (PascalCase or UpperCamelCase)
      VisibleDefaultsOnly                                                                               bool          bool bIsTeaDelicious;
                                     Visible in property windows for archetypes, & can't be edited
                                     Visible in property windows for instances, not archetypes, & can't be 
      VisibleInstanceOnly                                                                               float         float TeaWeight;
                                     edited
                                                                                                        int32         int32 TeaCount;
                                                                                                        FName         FName TeaName;
                                                                                                        FString       FString TeaFriendlyName;
                 UFUNCTION                   UFUNCTION(BlueprintCallable, Category = Power)
                                     Will not execute from Blueprint code if running on something 
      BlueprintAuthorityOnly                                                                            UClass        UClass* TeaClass;
                                     without network authority
      BlueprintCallable              Can be executed in a Blueprint or Level Blueprint graph            USoundCue     USoundCue* TeaSound;
      BlueprintCosmetic              Is cosmetic and will not run on dedicated servers                  UTexture      UTexture* TeaTexture;
      BlueprintImplementableEvent    Can be overridden in a Blueprint or Level Blueprint graph
                                     Designed to be overridden by a Blueprint, but also has a 
      BlueprintNativeEvent
                                     native implementation
                                     Does not affect the owning object in any way and can be 
      BlueprintPure
                                     executed in a Blueprint or Level Blueprint graph
      Category                       Category of the function. Nested categories with | operator
                                     Only executed on the client that owns the Object the function 
      Client
                                     belongs to
      Exec                           Can be executed from the in-game console
                                     Executed locally on the server and replicated to all clients, 
      NetMulticast
                                     regardless of the Actor's NetOwner
                                     Replicated over the network, and is guaranteed to arrive 
      Reliable
                                     regardless of bandwidth or network errors
      Server                         Only executed on the server
                                     Replicated over the network but can fail due to bandwidth 
      Unreliable
                                     limitations or network errors
                                                                              www.uecasts.com
                                                                               Unreal Engine 4.24
The words contained in this file might help you see if this file matches what you are looking for:

...Uecasts com ue c cheat sheet uproperty visibleanywhere category player typename prefix example multicast delegates only exposes property for assigning in blueprintassignable aactor a acharacter blueprints blueprintcallable boolean b bool bisteadelicious exposed calling blueprintreadonly enums e enum eplayertype readable from but not writeable blueprintreadwrite interfaces i inetworkconnection read or struct f fmystruct of the nested categories with operator editanywhere swidget s smywidget can be edited by windows on archetypes instances editdefaultsonly template t tarray myintarray editfixedsize uobject u ucameracomponent thirdpersoncamera prevent changing length an array useful dynamic arrays editinstanceonly transient should saved zero filled at load time visible all naming coding standards pascalcase uppercamelcase visibledefaultsonly visibleinstanceonly float teaweight int teacount fname teaname fstring teafriendlyname ufunction power will execute blueprint code if running somethi...

no reviews yet
Please Login to review.