Skip to main content

Introduction

Feces is a library for replicating jecs entities and components. Here are some examples:

local entity = world:entity()
local Transform = world:component()
world:add(entity, Transform)

-- replicate all the components to all players
world:add(entity, feces.replicated)

-- replicate only the Transform component to all players
world:add(entity, pair(feces.replicated, Transform))

-- replicate all components to a specific player
world:set(entity, feces.replicated, Player1)

-- replicate only the Transform component to a table of players
world:set(entity, pair(feces.replicated, Transform), {
Player1, Player2
})

-- replicate all components to any player except Player1
world:add(entity, feces.replicated, function(player)
return player ~= Player1
end)

Installation

Currently only available on pesde.