npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aframe-object-parent

v0.1.0

Published

Changes the object3D parent of an A-Frame entity.

Downloads

5

Readme

Overview

Changes the object3D parent of an A-Frame entity.

By default, the THREE.js scene graph of Object3Ds matches the A-Frame DOM hierarchy. However there are specific cases where it can be helpful to rearrange the THREE.js scene graph, without modifying the A-Frame DOM hierarchy, for example:

  • This provides a convenient way to grab objects with a hand or controller - reparent them to the hand / controller, and then parent them back to the original parent when released.
  • It can also be a convenient way to stick objects to other objects, which can be more efficient than using physics-based constraint systems.

This component provides a straightforward way to do this, that is reflected in the DOM.

When the object-parentis set on an entity, that entity maintains the same world transform (i.e. position, scale, rotation). This means that it's local transform is updated to deliver this world transform in the context of the new parent.

Removing the attribute results in the object being returned to it's default position in the scene graph (again, maintaining the same world transform).

Other Approaches to Re-Parenting

This is just one approach to reparenting entities. It works well in some cases, but may not be the best solution in all cases.

Another approach is do reparent in the DOM (which naturally also updates the THREE.js scene graph).

There's some fairly extensive discussion (plus code snippets for some other approaches) in the A-Frame repo here and on Stack Overflow here.

Schema

| Property | Description | Default | | -------- | ------------------------------------------------------------ | ------- | | parent | Selector for entity to make the object a direct child of.This should identify a unique entity (the component will warn if it matches more than one). | none |

Installation

Via CDN

<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.min.js"></script>

Or via npm

npm install aframe-object-parent

Examples

Change an element's parent like this:

this.el.setAttribute('object-parent', 'parent:#newparent')

Dedicated small-scale example to follow.

For now, see mouse-manipulation.js and laser-manipulation.js, which both use this component.

Code

object-parent