From fe7e2854de753fe05325bd7d02825a5641083dad Mon Sep 17 00:00:00 2001 From: bakpakin Date: Wed, 10 Aug 2016 21:48:20 -0400 Subject: [PATCH] Update doc. --- tiny.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tiny.lua b/tiny.lua index c18617f..721799b 100644 --- a/tiny.lua +++ b/tiny.lua @@ -278,11 +278,13 @@ end -- -- There is another option to (hopefully) increase performance in systems that -- have items added to or removed from them often, and have lots of entities in --- them. Setting the `nocache' field of the system might improve performance. +-- them. Setting the `nocache` field of the system might improve performance. -- It is still experimental. There are some restriction to systems without --- caching, however. * There is no `entities` table. * Callbacks such onAdd, --- onRemove, and onModify will never be called * Noncached systems cannot be --- sorted (There is no entities list to sort). +-- caching, however. +-- +-- * There is no `entities` table. +-- * Callbacks such onAdd, onRemove, and onModify will never be called +-- * Noncached systems cannot be sorted (There is no entities list to sort). -- -- @section System