Skip to content

String Types

Caishangqi edited this page Jun 27, 2023 · 1 revision

FStrings

  • Most commonly used for debugging
  • Allows string manipulation (append, split ...)

FName

  • Hashed for faster 'string' manipulation.
  • Used by system and gameplay logic (e.g. GetMuzzleLocation(FName))
  • Doesn't change once assigned.

FText

  • Front-end text to display in UI
  • Easily 'localized' into different languages.

Clone this wiki locally