#!/bin/csh
# This is a script mission that loads all rocks
# be aware that you may have many more than you really want to load
#
# before your try to figure this out just by reading it, try executing it
#
set wd = `dirname $0`
set rd = ${wd}/../Rocks
/bin/echo level = { name = \"everything\"
foreach i (${rd}/*)
set bi = `basename $i`
# Ignore directories
if (!(-d $i)) then
  /bin/echo rock = { scale = .2 count = 1 geometry = \"${bi}\" }
endif
end
echo }
