diff src/paranormal/containers.c @ 155:adf9f4b26039 trunk

[svn] - user-friendly names (UI side unimplemented still)
author nenolod
date Tue, 31 Oct 2006 12:07:32 -0800
parents fd9c0a5871ac
children 0393aae79318
line wrap: on
line diff
--- a/src/paranormal/containers.c	Tue Oct 31 01:29:30 2006 -0800
+++ b/src/paranormal/containers.c	Tue Oct 31 12:07:32 2006 -0800
@@ -80,6 +80,7 @@
 struct pn_actuator_desc builtin_container_simple =
 {
   "container_simple",
+  "Simple Container",
   "A simple (unconditional) container\n\n"
   "This is usually used as the root actuator of a list",
   ACTUATOR_FLAG_CONTAINER, NULL,
@@ -127,6 +128,7 @@
 struct pn_actuator_desc builtin_container_once =
 {
   "container_once",
+  "Initalization Container",
   "A container whose contents get executed exactly once.\n\n"
   "This is often used to set initial graphics states such as the\n"
   "pixel depth, or to display some text (such as credits)",
@@ -195,6 +197,7 @@
 struct pn_actuator_desc builtin_container_cycle =
 {
   "container_cycle",
+  "Branched-execution Container",
   "A container that alternates which of its children is executed;  it "
   "can either change children randomly or go in order.",
   ACTUATOR_FLAG_CONTAINER, container_cycle_opts,