Loading...
Searching...
No Matches
CityBuilderCore.MessageHappening Class Reference

Detailed Description

an event that sends messages to a named object, leave messages empty to not send

https://citybuilder.softleitner.com/manual/timings

Inheritance diagram for CityBuilderCore.MessageHappening:
CityBuilderCore.TimingHappening

Public Member Functions

override void Start ()
 called when the happening first starts, meaning when its condition switches from being false to true
use for thing that persist on their own like adding items to buildings or changing risk values
the difference to Activate is that start will not be called again when the game is loaded
 
override void End ()
 called when the happening first end, meaning when its condition switches from bein true to being false the difference to Deactivate is that end will not be called again when the game is unloaded
 
override void Activate ()
 called whenever the happening becomes active, this may be when the happening starts or when a game is loaded at a time when the happening is active used for ongoing stuff like modifers to layers and services or for visuals like rain particles
 
override void Deactivate ()
 called whenever the happening becomes inactive, this may be when the happening ends or when a game is unloaded
used to reset ongoing stuff from Activate
 

Public Attributes

string ObjectName
 
string StartMessage
 
string EndMessage
 
string ActivateMessage
 
string DeactivateMessage
 
- Public Attributes inherited from CityBuilderCore.TimingHappening
string Name
 
string StartTitle
 
string StartDescription
 
string EndTitle
 
string EndDescription
 

Member Function Documentation

◆ Activate()

override void CityBuilderCore.MessageHappening.Activate ( )
inlinevirtual

called whenever the happening becomes active, this may be when the happening starts or when a game is loaded at a time when the happening is active used for ongoing stuff like modifers to layers and services or for visuals like rain particles

Reimplemented from CityBuilderCore.TimingHappening.

◆ Deactivate()

override void CityBuilderCore.MessageHappening.Deactivate ( )
inlinevirtual

called whenever the happening becomes inactive, this may be when the happening ends or when a game is unloaded
used to reset ongoing stuff from Activate

Reimplemented from CityBuilderCore.TimingHappening.

◆ End()

override void CityBuilderCore.MessageHappening.End ( )
inlinevirtual

called when the happening first end, meaning when its condition switches from bein true to being false the difference to Deactivate is that end will not be called again when the game is unloaded

Reimplemented from CityBuilderCore.TimingHappening.

◆ Start()

override void CityBuilderCore.MessageHappening.Start ( )
inlinevirtual

called when the happening first starts, meaning when its condition switches from being false to true
use for thing that persist on their own like adding items to buildings or changing risk values
the difference to Activate is that start will not be called again when the game is loaded

Reimplemented from CityBuilderCore.TimingHappening.