Skip to main content

Kitcoon

Based on game build 714014 | Last updated: 2026-03-03

Overview

Kitcoon is a minimal, non-functional component attached to entities. It serves as a placeholder or stub with no active behavior beyond exposing a GetDebugString method that returns an empty string. It does not interact with other components, tags, or game systems.

Usage example

local inst = CreateEntity()
inst:AddComponent("kitcoon")
-- This component has no runtime effect.
-- The following always returns an empty string:
local debug_str = inst.components.kitcoon:GetDebugString()

Dependencies & tags

Components used: None identified
Tags: None identified

Properties

No public properties

Main functions

GetDebugString()

  • Description: Returns a string for debugging purposes. In this implementation, it always returns an empty string.
  • Parameters: None.
  • Returns: string — always "".
  • Error states: None.

Events & listeners

None identified.