
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
com.github.asus4.texture-source
Advanced tools
Simplify WebCamera and test video handling for using Computer Vision in Unity
TextureSource is a utility that provides a consistent API to get the texture from various sources.
using TextureSource;
using UnityEngine;
[RequireComponent(typeof(VirtualTextureSource))]
public class TextureSourceSample: MonoBehaviour
{
private void Start()
{
// Listen to OnTexture event from VirtualTextureSource
// Also able to bind in the inspector
if (TryGetComponent(out VirtualTextureSource source))
{
source.OnTexture.AddListener(OnTexture);
}
}
private void OnDestroy()
{
if (TryGetComponent(out VirtualTextureSource source))
{
source.OnTexture.RemoveListener(OnTexture);
}
}
public void OnTexture(Texture texture)
{
// Do whatever 🥳
// You don't need to think about webcam texture rotation.
}
}
Add the following setting to Packages/manifest.json
{
"scopedRegistries": [
{
"name": "npm",
"url": "https://registry.npmjs.com",
"scopes": [
"com.github.asus4"
]
}
],
"dependencies": {
"com.github.asus4.texture-source": "0.3.3",
...// other dependencies
}
}
After installing the library, attach VirtualTextureSource
to the GameObject.
Then, right-click on the project panel and create the TextureSource scriptable object that you want to use. You can set different sources for the Editor and Runtime.
Currently provides the following sources:
Includes collecting device rotation.
Useful when using test videos only in the Editor.
Test with static images.
OnTexture
event is invoked every frame if the sendContinuousUpdate
is enabled.
Provides AR camera texture access. It supports both ARCore/ARKit.
Inspired from TestTools
FAQs
Simplify WebCamera and test video handling for using Computer Vision in Unity
The npm package com.github.asus4.texture-source receives a total of 108 weekly downloads. As such, com.github.asus4.texture-source popularity was classified as not popular.
We found that com.github.asus4.texture-source demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.