Points unaffected by object hierarchy scale
See original GitHub issueExpected behavior
Expected Points with { sizeAttenuation: true }
on the PointsMaterial
to have its render size to be affected by object hierarchy scale. Own scale or parent scale, etc.
Live example
Steps to reproduce the behavior:
- Go to https://jsfiddle.net/98u1j5x3/
- see render function
- observe behavior
Platform:
- Three.js version: dev
Issue Analytics
- State:
- Created a year ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Object hierarchy - scale does not change location
When I change the first object in the hierarchy's scale (reducing by a scale factor of 1000), the object becomes smaller to the...
Read more >Object vs Mesh & Apply Scale in Blender - YouTube
Do you want to understand the difference between Object and Mesh Data-blocks in Blender and how they work together?
Read more >Story - Scaled Agile Framework
SAFe's Requirements Model describes a four-tier hierarchy of ... At scale, it becomes difficult to predict the story point size for larger ...
Read more >Size and scale numbers for Configuration Manager
Determine the number of site system roles and sites that you'll need to support the devices in your environment.
Read more >How to scale particle system? - Unity Forum
Any scaling of its parent will not affect it in any way. "Hierarchy" - The particle system will scale based on its parent...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yeah, this is one of the open points in context of WebGPU. Meaning how to treat
THREE.Points
. Right now, the renderer uses thepoint-list
primitive for rendering but that will break many existing use cases considering howTHREE.Points
is used in WebGL.@Mugen87
Hmm, we may need to render
THREE.Points
using instanced planes facing the camera in WebGPU. OtherwiseTHREE.Points
will not be very useful…