jbilcke-hf HF Staff commited on
Commit
78d1d5a
·
1 Parent(s): 367ab49

adding more actions

Browse files
Files changed (1) hide show
  1. src/app/main.tsx +7 -5
src/app/main.tsx CHANGED
@@ -9,14 +9,16 @@ const initialScene = `medium shot of a single clownfish idling near a yellow cor
9
 
10
  const actions = [
11
  "idling",
12
- "eating",
13
- "looking at camera"
 
 
14
  ]
15
 
16
  const positions = [
17
- "swimming in the middle",
18
- "swimming from left to right",
19
- "swimming from right to left"
20
  ]
21
 
22
  const pick = (items: string[]) => items[Math.floor(Math.random()*items.length)]
 
9
 
10
  const actions = [
11
  "idling",
12
+ "fighting another fish",
13
+ "escaping an octopus",
14
+ "eating some coral",
15
+ "eating another fish"
16
  ]
17
 
18
  const positions = [
19
+ "centered in the middle",
20
+ "hiding in the sand",
21
+ "hiding in the coral"
22
  ]
23
 
24
  const pick = (items: string[]) => items[Math.floor(Math.random()*items.length)]