From 1d1c206ecfc1d00ebcc071b8ce8094e0a6642624 Mon Sep 17 00:00:00 2001 From: Chris Laurel Date: Fri, 1 Jun 2001 23:10:48 +0000 Subject: [PATCH] Used paths instead of multiple selects to choose planets --- demo.cel | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/demo.cel b/demo.cel index 99236f778..71373c8e3 100644 --- a/demo.cel +++ b/demo.cel @@ -7,8 +7,7 @@ wait { duration 2.0 } print { text "Let's start near home . . ." } - select { object "Sol" } - select { object "Earth" } + select { object "Sol/Earth" } cancel {} setorientation { axis [ 1 0 0 ] angle 180 } goto { time 0 distance 3 } @@ -147,8 +146,7 @@ orbit { axis [ 1 0 0 ] rate 30 duration 10.0 } print { text "Time to go home . . ." } - select { object "Sol" } - select { object "Earth" } + select { object "Sol/Earth" } goto { time 20 distance 10 } wait { duration 20.0 } print { text "Demo completed." }