Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 12]
 NNEEDSIM
 CActionWe hope we wrote our example actions in a way that they can be integrated into your Finite State Machine, Behavior Tree, or Planner. We provide a sample use of our sample actions in the PlanDemo.cs class.
 CBlackboardThis is used to store some values, and make some methods available in a place where they can be edited without affecting the other classes.
 CChaseSlotThis is an example for how a chasing behavior could be implemented in NEEDSIM Life simulation. For a specific game better solutions might be desirable.
 CDecideGoalFor goal oriented behaviors: Get a goal from the simulation, and try to get a slot where the goal can be satisfied.
 CDecideValueFor Value-oriented behaviors: Try to get a slot based on utility of all available slots (relative to the current satisfaction level of the needs of the agent).
 CInterruptionFuchsalarmThis action demonstrates how interruption of typical NEEDSIM behaviors could look like.
 CMoveToSlotMoving to a slot. The best implementation for such a behavior might be different in your project, but this script offers a starting point.
 CNEEDSIMManagerThis class stores the values that the NEEDSIMROOT will use for running the simulation
 CNEEDSIMNodeEvery object and agent in NEEDSIM Life simulation has a NEEDSIMNode: This is the essential component for using NEEDSIM Life simulation.
 CNEEDSIMRootEvery scene should have one root node for the AFFORDANCE TREE. This uses the settings of the NEEDSIM Manager and controls the simulation.
 CPlanDemoA simple behavior control solution. We tried to write this in a way that makes it easy to use our code samples in Finite State Machines, Behavior Trees and Goal-oriented Action Planning. The idea is that you can run our simulation from within a different solution, for example in case you want to have agents with fighting capabilites.
 CSatisfyGoalParticipate in a slot to satisfy a goal.
 CSatisfyUrgentNeedParticipating a slot. The respective behavior for value/urgency oriented behaviors.
 NNEEDSIM3rdParty
 CSingletonBe aware this will not prevent a non singleton constructor such as T myT = new T(); To prevent that, add protected T () {} to your singleton class
 NNEEDSIMSampleSceneScripts
 CAnimalThis example suggests an idea for playing animations based on the states of NEEDSIMNodes.
 CBunnyThis example script shows how the bunny can deal with the 'EatBunny' interaction, that can be performed by a fox at the slot provided by a bunny.
 CDeerThe deer currently has no special features. Rather check out the fox and the bunny for now ;)
 CFoxSets the fox to either run or walk
 CFuchsalarmDemoScriptThis script shows how the behaviors of the bunnies are interrupted when the fox is spawned.
 CInputFieldRuntimeEditingHelper to change need satisfaction rates of interactions and satisfaction change rates of needs at runtime in a UI. It provides a method to react to the user finishing his input to the InputField.
 CLakeThis example suggests an idea for how a variety of animations can be played at an interactive object.
 CNeedsUIThis class shows bars for need satisfaction. A full bar equals full satisfaction, an empty bar means the need is not satisfied. If the need is currently being satisfied an outline will be added.
 CSampleCameraControlA very simple scrolling camera for NEEDSIM Life simulation example scenes.
 CSceneSwitcherpublic methods to switch scenes via a button click. You have to add the scenes to your build settings to use the prefab that uses this script.
 CSimpleSpawnThis is a spawning example script to maintain populations
 CSpawnBedsManagerThis example shows how you could spawn all the objects and agents procedurally.
 CSpawnUIRuntimeEditingSpawns a UI Element for each need and each satisfaction rate of an interaction.
 CTimeSystemThis example uses arrays with 24 values each to modify how behaviors are evaluated at a specific time of day. This class works with Value Oriented behaviors, not with Goal Oriented behaviors, because it relies on the fact that all opportunities to satisfy needs are evaluated, not only the opportunities that can satisfy the need of the current goal.
 NSimulation
 CAffordanceAn affordance is the opportunity granted by an object to an agent to perform an action.
 CAffordanceTreeNodeEach game object managed by the simulation has an Affordance Tree Node. It manages scope, affordances, slots, and, if the affordance tree is an active part of the simulation, its goals and levels of satisfaction.
 CDatabaseAssetStores the data used by the NEEDSIM Life simulation
 CGeneralSettingsA number of values used as configuration of the simulation and editor.
 CGoalA goal is a satisfaction level of a need that an agent wants to achieve.
 CInteractionAn interaction at runtime
 CInteractionDataFrom these data items used in the editor the interactions for the runtime will be generated.
 CManagerA singleton for managing the simulation at runtime
 CNeedItemA need, one of the core building blocks of NEEDSIMLifeSimulation
 CNeedsThe Needs class provides methods for interacting with the satisfaction levels of agents.
 CSimulationDataThe data loaded in the simulation at runtime
 CSlotA slot is a position in the world where an agent can run the interactions provided by the object that offers the slot.
 CSpeciesA species is a set of needs. For example zombies might only have the 'Hunger' need, whereas humans furthermore have a 'Social' need.
 CStringFloatPairA class that helps creating key value pairs.
 CStringsA centralized place for many of the strings used by the NEEDSIM Life simulation.