openrndr / orx

A growing library of assorted data structures, algorithms and utilities for OPENRNDR
https://openrndr.org
BSD 2-Clause "Simplified" License
121 stars 37 forks source link

kinect support broken after migration to orx-jvm #210

Closed morisil closed 2 years ago

morisil commented 2 years ago

Issue Resource not found error: kinect-raw-to-depth.frag while using orx-kinect in the project.

The Cause

Refactoring in IntelliJ sometimes is creating this issue, that if default kotlin package is used, and some extra classes are put into nested fully qualified package folder, some redundant package names might be created, so it turns into:

package org.openrndr.extra.kinect.org.openrndr.extra.kinect.impl

instead of

package org.openrndr.extra.kinect.impl

It would still work despite long package name if not for the kinect-raw-to-depth.frag which was still in the original package.

Related to:

https://github.com/openrndr/openrndr/issues/264