Skip to content

Commit

Permalink
initialize V0.1 (first public version)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradysheridan committed Jul 28, 2024
2 parents eeb0ed0 + 0014d94 commit 0d5d969
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/components/CanvasP5.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export default function CanvasSource(props) {
onSketch,
webcamEnabled
} = props;

console.log("CanvasP5 props:", props);

// expose alias 'my' to store local non-state vars within component instance
const componentRef = useRef({});
Expand Down
2 changes: 1 addition & 1 deletion src/components/ControlsContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const ControlsProvider = (props) => {
const [webcamRecording, setWebcamRecording] = useState(false);
const [exportFormat, setExportFormat] = useState("embeddable animation (html/js)");
const [propagateChangesToASCIIString, setPropagateChangesToASCIIString] = useState("none");

return(
<ControlsContext.Provider
value={{
Expand Down

0 comments on commit 0d5d969

Please sign in to comment.