VerseWiki
CtrlK
VerseWiki
CtrlK
  • Table of Contents
  • Import Expressions
  • 01. Common Naming Patterns
  • 02. Names
  • 03. Formatting
  • 04. Functions
  • 05. Failure Checks
  • 06. Encapsulation
  • 07. Events
  • 08. Concurrency
  • 09. Attributes
  • 10. Constructors
  • 11. Class & Specifiers
  • 12. Math
  • 13. Containers
  • 📘Fortnite Digest
  • 📗Unreal Engine Digest
  • 📕Verse Digest
  • EG: Onboarding Guide
  • EG: Verse Programming
  • EG: Language Reference
  • EG: Official API
  • EG: Verse Scripting
  • EG: Dev Community
  • EG: Community Snippets
  • View on Github Wiki
Powered by GitBook
On this page

Was this helpful?

07. Events

7.1 Postfix Events with Event and Prefix Handlers with On

  • Subscribable events or delegate list names should be postfixed with 'Event', and event handler names should be prefixed with On.

    MyDevice.JumpEvent.Subscribe(OnJump)
Previous06. EncapsulationNext08. Concurrency

Was this helpful?