Forum Replies Created
-
AuthorPosts
-
kdvParticipant
Is it possible to import
depends on what exactly you want to import. in most cases it’s possible…
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantYou can use LockedTrack or DampedTrack (or their combinations).
https://drive.google.com/file/…/view?usp=sharingPuzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
2024-09-24 at 5:02 pm in reply to: Blender, Active Scene Camera coordinates, is ignored on publish. #77592kdvParticipantIf I am not mistaken….the actual camera used in Blender is not exported in the GLTF. Only its position and direction vector
yes, you are right ))) but the camera’s direction matters only with the Flying and First Person controls. In case with the Orbit controls the scene’s camera will be always directed towards its orbiting point which is 0,0,0 by default.
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
2024-09-24 at 4:00 pm in reply to: Blender, Active Scene Camera coordinates, is ignored on publish. #77588kdvParticipantMy camera is not looking exactly at 0,0,0
you are mistaken. in v3d it’s looking at zero point by default. just keep in mind that your camera in Blender has no strict controls, but in v3d you are using the Orbit controls.
how do I get it to stop that?
set offsets or choose a target object
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantdel
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
2024-09-23 at 5:01 pm in reply to: Blender, Active Scene Camera coordinates, is ignored on publish. #77548kdvParticipantYour camera is looking exactly at 0,0,0 point and this point is right in the middle of your screenshot. That’s the camera’s orbit point and it’s alwayas in the middle of the screen. Just add an offset in the camera settings.
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantkdvParticipantuse thousands of bones (which I can do), but not sure how performant that solution would be.
it will be much faster in v3d.
If each instance was dynamically created in JS as an InstanceMesh, would that change anything, or same result?
Verge3D supports objects of type InstancedMesh but doesn’t provide instruments to create them. Only JS coding
Only bloom
This post-processing effect significantly increases the amount of render calls (up to 3 times more).
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantShould I be concerned with the number of Render Calls
Yes, you should. You’d better merge those objects into one object if they are not supposed to move.
And I assume (but not for sure) that you are using several post-processing effects or several light sources casting shadows. That’s why there so many render calls.
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantIt doesn’t look like any of the instanced objects are of the type InstancedMesh (they don’t have the isInstancedMesh property)
exactly, they are not of type InstancedMesh. they are just separate objects sharing the same material and geometry.
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantDisable shadow recieving for that object in Blender.
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantAvoid vertical zero angle when using the “Track To” constraint…
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
kdvParticipantthe pistons “flip” around their contrained axis, trying to maintain the Z-axis up I guess
exactly. that’s normal behavior for this constrain in three/v3d. the Up axis is always directed upwards. that’s why your object rotates at zero angle position.
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
2024-09-19 at 6:51 am in reply to: Can’t trigger cloning via get distance/transform puzzle when object is moving? #77479kdvParticipant5 is a step, an interval between clones.
The point is to detect positions multiples of 5. The problem is that while moving your cube will never be exactly at 10, it’s position wil be ~9.999999756 or ~10.00000156 and it’s hard to catch 10 exactly. That’s why a remainder is used to catch the desired position. It should be a very small value, less than the moving step.
this logic will trigger cloning at 0.03, 3.03, 6.03, 9.03 etc.My variation of your answer:
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
2024-09-18 at 10:53 am in reply to: Can’t trigger cloning via get distance/transform puzzle when object is moving? #77473kdvParticipanthttps://drive.google.com/…/view?usp=sharing
Puzzles and JS coding. Fast and expensive.
If you don’t see the meaning in something it primarily means that you just don’t see it but not the absence of the meaning at all.
-
AuthorPosts