diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-17 10:23:00 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-17 10:23:00 +0100 |
| commit | 1ea4a497043ca3f4efe246d6488e3ce57574bf3b (patch) | |
| tree | 957c3d2dd4c98c37d245a8fbfb8d1666d055b523 /app/client/modules | |
| parent | d256d4aa266881764b71422ad3f1739572b3dbd3 (diff) | |
deploy bundle
Diffstat (limited to 'app/client/modules')
| -rw-r--r-- | app/client/modules/biggan/views/biggan.encodingList.js | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/app/client/modules/biggan/views/biggan.encodingList.js b/app/client/modules/biggan/views/biggan.encodingList.js index 38a4a28..1f0004d 100644 --- a/app/client/modules/biggan/views/biggan.encodingList.js +++ b/app/client/modules/biggan/views/biggan.encodingList.js @@ -40,7 +40,7 @@ class BigGANEncodingList extends Component { : <div className='param frame_counter'><span></span></div> } </div> - <Group title={"Stored image"}> + <Group title={"Stored Image"}> <Slider live name='encoding_stored_speed' title={"Load speed"} @@ -72,6 +72,27 @@ class BigGANEncodingList extends Component { min={0} max={1} type='float' /> </Group> + <Group title={"Encoding Orbit"}> + <Slider live + name='encoding_orbit_speed' + title={"Orbit speed"} + min={-250} max={250} type='int' + /> + <Slider live + name='encoding_orbit_radius' + title={"Radius"} + min={0} max={1.0} step={0.001} type='float' + /> + <Button + title={"Shuffle"} + onClick={() => actions.live.send_command('switch', 'encoding_orbit_noise')} + >{"Spin"}</Button> + <Slider live + name='encoding_orbit_noise_speed' + title={"Shuffle Speed"} + min={1} max={250} type='int' + /> + </Group> <div className="categories encodings" ref={ref => this.categoryRef = ref}> {Object.keys(encodings).sort().map(name => { return ( |
