Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NoColorSpace + mouse actions to documentation #24423

Merged
merged 4 commits into from
Aug 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/api/en/constants/Core.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ <h2>Revision Number</h2>

<h2>Color Spaces</h2>
<code>
THREE.NoColorSpace
THREE.SRGBColorSpace
THREE.LinearSRGBColorSpace
</code>

<p>
[page:NoColorSpace] defines no specific color space.
</p>
<p>
[page:SRGBColorSpace] (“sRGB”) refers to the color space defined by the Rec. 709 primaries, D65
white point, and nonlinear sRGB transfer functions. sRGB is the default color space in
Expand All @@ -48,7 +51,15 @@ <h2>Mouse Buttons</h2>
THREE.MOUSE.LEFT
THREE.MOUSE.MIDDLE
THREE.MOUSE.RIGHT
THREE.MOUSE.ROTATE
THREE.MOUSE.DOLLY
THREE.MOUSE.PAN
</code>
<p>
The constants LEFT and ROTATE have the same underlying value.
The constants MIDDLE and DOLLY have the same underlying value.
The constants RIGHT and PAN have the same underlying value.
</p>

<h2>Touch Actions</h2>
<code>
Expand Down