Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

139 total results found

Cursor Player

Experience System

How the player works with and stores the Levels/Experience

Shop Items and Categorys

Experience System

How shop wheel knows to display items based on Level

DataAssets

Experience System

Where are the Experience parameters stored?

APooledCharacter

NPC Logics

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

Experience System

The controller for the experience and levelups, also has award storage

Calendar Subsystem

Calendar/Time Keeping

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

Calendar/Time Keeping

Backwards Compatibility (Event Manager BP)

Calendar/Time Keeping

Animal Definition Data

Experience System DataAssets

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

Experience System DataAssets

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

Experience System DataAssets

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

NPC Logics APooledCharacter

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)

NPC Logics APooledCharacter

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

NPC Logics APooledCharacter

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

Experience System Cursor Player

On begin play the player binds to the events on the Award Subsystem and plays the sounds when called

Add Experience Debug Key

Experience System Cursor Player

The player has a debug key for giving yourself a xp point when you press "-"

Blueprint functions

Experience System Award Subsytem

Adding Experience

Experience System Award Subsytem

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

Experience System Award Subsytem

Clock hands

Calendar/Time Keeping Clock UI

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

Calendar/Time Keeping Clock UI

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

Calendar/Time Keeping Calendar Subsystem

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

Calendar/Time Keeping Calendar Subsystem

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

Calendar/Time Keeping Backwards Compatibility (Event Manager BP)

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

Calendar/Time Keeping Backwards Compatibility (Event Manager BP)

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

Calendar/Time Keeping

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...