Sphere-Light-Render-ComfyUI

(★ 37)

Widget to tell Flux 2 Klein 9B where the sun light comes from. To be used with Sun_direction_Lora for Flux2Klein

File Explorer

  • .gitignore
  • __init__.py
  • CHANGELOG.md
  • LICENSE
  • NOTICE.md
  • package.json
  • pyproject.toml
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

npm test

View Details ▼

This command is an alias of `npm run test`.

tldr npm run

View documentation for the original command:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

eXIf

View Details ▼

Show and change EXIF information in JPEG files.

exif {{path/to/image.jpg}}

Show all recognized EXIF information in an image:

exif {{[-l|--list-tags]}} --no-fixup {{path/to/image.jpg}}

Show a table listing known EXIF tags and whether each one exists in an image:

exif {{[-e|--extract-thumbnail]}} {{[-o|--output]}} {{path/to/thumbnail.jpg}} {{path/to/image.jpg}}

Extract the image thumbnail into a separate file:

// repository documentation