Helper Functions

Internal utilities exposed for general use.

Feature & Plugin Detection

Check for API capabilities or installed add-ons.

if ragapi.hasFeature("Animation constraints") then
    -- Use advanced physics
end

ragapi.rag.features -- Returns a list of features.
ragapi.dateOfBuild -- Returns the last time this version of RagdollV9 was updated.

if ragapi.hasPlugin("WeightSystem") then
    -- Interact with a specific plugin
end

ragapi.getPlugins() -- Returns a list of all active plugin IDs.