Search code examples
aframe

what is core:schema:warn Unknown property A for component/system B in Aframe?


enter image description here

enter image description here

enter image description here

What is this warn???

My project works fine, but these errors are annoying

Hundreds of such warnings occur. I want to remove these

i don`t use Vue, React, etc..

thanks!


Solution

  • It means that the property is not defined in the schema for those components.

    In your case x, y are not defined properties for the spot component. src, pop, name, type, count are not defined for the detail component. Look for places in your code where those are set (like your HTML) and adjust.