Advanced Search
Search Results
139 total results found
Cursor Player
How the player works with and stores the Levels/Experience
Shop Items and Categorys
How shop wheel knows to display items based on Level
DataAssets
Where are the Experience parameters stored?
APooledCharacter
APooledCharacter is mainly responsible for handling the pooling logic for the characters that use it and properly handle instances that aren't pooled. Inherits from class: ACharacter Implements interfaces: IPoolable, IEventListener
Award Subsytem
The controller for the experience and levelups, also has award storage
Calendar Subsystem
The Calender Subsystem is the heart of the time keeping logic, It keeps track of what time of day, month, and year it is ingame.
Clock UI
Backwards Compatibility (Event Manager BP)
Animal Definition Data
When you set the Animal Level it will automatically update the experience each task will give you expect variants, variants remain 4 experience no matter the level of the pinata. The values per level can be found in the C++ as arrays, they are 1 indexed ...
Plant Definition Data
The Plant experience is fairly straightforward the player has to fully grow a plant to get the growth experience and the fertilize experience is equal to the growth experience. But do note that the plants have to be fertilized 3 times to get the experience f...
Tree Definition Data
Grown Experience is multiplied by 4 for trees Fertilizer 3 is Grown Experience divided by 2 Fertilizer 2 is Fertilizer 3 divided by 2 Fertilizer 1 is Fertilizer 2 divided by 2 unless Fertilizer 2 is two in which case Fertilizer 1 is 2
SetUsed
SetUsed tells the APooledCharacter instance whether or not it is being used. If the instance is part of a pool, it enables/disables the ActorTick, collision, and visibility, then either begins or ends using the APooledCharacter (more on that later). If the APo...
Initialise (yes, we know it's misspelled here)
At this level the initialize function is a lightweight function; all it does is sets the value of the APooledCharacter's soul and DefinitionDataID (as seen in Initialise_Implementation). The child blueprints need to use the NPCType variable to find the correct...
Important Variables to Know
This isn' all of the variables that are present but are some that are very important to the APooledCharacter's functionality: int64 SoulID: A unique identifier for an NPC. This number is used to find the correct data associated with that NPC, so if you giv...
Playing Exp and Levelup sounds
On begin play the player binds to the events on the Award Subsystem and plays the sounds when called
Add Experience Debug Key
The player has a debug key for giving yourself a xp point when you press "-"
Blueprint functions
Adding Experience
The add experience function adds experience to the pending experience variable, the tick then moves one point at a time to the experience variable leveling up along the way, every 12 the clock will need to reset
Adding/Checking Awards
Clock hands
Within RTP_Clock on the tick we just get the day progress 0-1 and convert it to minutes and hours then it multiplys the values by the angle the hand needs to move
Clock Gradient
The clock gradient is controlled by a shader, the NightShader Mask output outputs 0 if its day, 0.5 if its dusk or dawn, and 1 if its night. We yse this value to sample a curve to properly lerp between the 3
Subsystem functions
The Calendar subsystem has a few functions that can be accessed from anywhere, The most important being Get Day Progress that outputs 0-1 0 to 0.5 is night and 0.5 to 1 is day
Project Settings
The subsystem is highly customizable, you can set how many days per month there is along with how long the day is in seconds
Hourly Time Dispatcher
The EventManagerBP has this on its tick, Its not ideal but it works for now and can be replaced eventually, Until then i have marked the dispatcher as depreciated.
Time of Day Dispatcher
The previous time manager kept track of a enum for the time of day, this converts the Day Progress to the time of day then runs a dispatcher, Id like to move this to the calendrer but just dont have time for that atm
Editor Tool
I have updated the garden save manager but due to how the ini files work you need to play in standalone or restart the editor, The visuals the the editor still update and the value in the ini but it doesn't load the new start time if you play in the viewport w...