
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
@galacean/asset-tools
Advanced tools
npm install --save @galacean/asset-tools
Use @galacean/engine
as an external library: https://gw.alipayobjects.com/os/lib/galacean/engine/0.9.11/dist/browser.js
import { transformGlTFtoGlB, GlTFViewer } from '@alipay/antg-asset-tools';
const json = await fetch("/model/duck.gltf").then((res) => res.json());
const resources: Record<string, Uint8Array> = {};
const items = [...json.buffers, ...json.images];
await Promise.all(
items.map(async (item) => {
const ab = await fetch(item.uri).then((res) => res.arrayBuffer());
resources[item.uri] = new Uint8Array(ab);
})
);
// transform glTF to glB
const glb = transformGlTFtoGlB({ json, resources });
const glTFPreview = GlTFPreview.getInstance();
document.getElementById("container")!.appendChild(glTFPreview.canvas);
await glTFPreview.loadAsset(glTFUrlOrGlbBlob);
glTFPreview.startPreview();
/** Get snapshot */
glTFPreview.getSnapshot(300, 300).then((snapshotUrl) => {
// do something
...
});
See functions API documentation for more details.
NOTE: 仅 node.js 环境可用
import { Document, JSONDocument } from '@gltf-transform/core';
import { GltfTools } from '@galacean/asset-tools/node';
const document: Document = await GltfTools.parse('./your_gltf.gltf', 'document');
const jsonData: JSONDocument = await GltfTools.parse('./your_gltf.gltf', 'json');
// 优化 glTF 里用到的纹理图片
GltfTools.textureTransform(document, {
resize: 512,
format: 'webp',
});
NOTE: 仅 node.js 环境可用
将 gltf pbr 材质转换成 unlint 材质
import path from 'path';
import { GltfTools } from '@galacean/asset-tools/node';
const url = 'https://gw.alipayobjects.com/os/H5App-BJ/1640334069506-gltf/scene.gltf';
async function main(source) {
const doc = await GltfTools.pbr2unlit(source);
}
main(url);
NOTE: 仅 node.js 环境可用
gltf 内部检测,具体请查看:https://github.com/KhronosGroup/glTF-Validator
import path from 'path';
import { GltfTools } from '@galacean/asset-tools/node';
const url = 'https://gw.alipayobjects.com/os/H5App-BJ/1640334069506-gltf/scene.gltf';
async function main(source) {
const report = await GltfTools.validate(source);
}
main(url);
// 检测结果:
/*
type ValidationReport = {
mimeType: string;
validatorVersion: string;
validatedAt: string;
issues: {
numErrors: number;
numWarnings: number;
numInfos: number;
numHints: number;
messages: any[];
truncated: boolean;
};
info: {
version: string;
generator: string;
extensionsUsed: string[];
resources: any[];
animationCount: number;
materialCount: number;
hasMorphTargets: boolean;
hasSkins: boolean;
hasTextures: boolean;
hasDefaultScene: boolean;
drawCallCount: number;
totalVertexCount: number;
totalTriangleCount: number;
maxUVs: number;
maxInfluences: number;
maxAttributes: number;
};
};
*/
通过 afts 参数,实现图片的缩放、裁剪、格式转换、压缩等功能。
import { transformImageByAftsUrl } from '@galacean/asset-tools';
const Imgs = [
'https://mdn.alipayobjects.com/huamei_p0cigc/afts/img/A*Lq5LS7PWLkEAAAAAAAAAAAAADoB5AQ',
'https://mdn.alipayobjects.com/huamei_p0cigc/afts/img/A*Lq5LS7PWLkEAAAAAAAAAAAAADoB5AQ/aaa/bbb/ccc.png',
'https://mdn.alipayobjects.com/huamei_p0cigc/afts/img/A*Lq5LS7PWLkEAAAAAAAAAAAAADoB5AQ/original',
'https://mdn.alipayobjects.com/huamei_p0cigc/afts/img/A*Lq5LS7PWLkEAAAAAAAAAAAAADoB5AQ/200w_200h',
'https://mdn.alipayobjects.com/huamei_p0cigc/afts/img/A*Lq5LS7PWLkEAAAAAAAAAAAAADoB5AQ/200w_200h.web',
'https://mdn.alipayobjects.com/huamei_p0cigc/afts/img/A*Lq5LS7PWLkEAAAAAAAAAAAAADoB5AQ/200w_200h.ccc.web',
];
const resultImgs = Imgs.map((img) => transformImageByAftsUrl(img, { width: 100, height: 100, quality: 80, mode: 'contain' }));
console.log('结果:', resultImgs);
console.log('一致:', Array.from(new Set(resultImgs)).length === 1 ? 'success' : 'fail')
FAQs
antg asset tools
The npm package @galacean/asset-tools receives a total of 49 weekly downloads. As such, @galacean/asset-tools popularity was classified as not popular.
We found that @galacean/asset-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers 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
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.