Source code for point.plugs.all

# p/plugs/all.py
#
#

## IMPORTS

from point import kernel, Object

import os
import time

[docs]def do_all(event): attrslist = [] result = [] sep = ", " for obj in event.objects(): for key in obj.clean(): if key not in attrslist: attrslist.append(key) event.reply(sep.join(attrslist))
kernel.cmnds.register("all", do_all)