🚀 DAY 2 OF LAUNCH WEEK: Unify Your Security Stack with Socket Basics.Learn more →
Socket
Book a DemoInstallSign in
Socket

@wannaby/wanna-model-viewer

Package Overview
Dependencies
Maintainers
8
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wannaby/wanna-model-viewer

3D Model Previewer

latest
Source
npmnpm
Version
0.0.10
Version published
Maintainers
8
Created
Source

#React Component for preview 3D glTF models

Install

yarn add @wannaby/wanna-model-viewer

Usage

For DnD previewer just init the component without url prop.

import React, { Component } from 'react'

import ModelViewer from 'wanna-model-viewer'

class Example extends Component {
  render() {
    return <ModelViewer />
  }
}

For remote download archive with model just add the url prop.

import React, { Component } from 'react'

import ModelViewer from 'wanna-model-viewer'

class Example extends Component {
  render() {
    return (
      <ModelViewer
        url="https://s3.amazonaws.com/bucket/model.zip"
      />
    )
  }
}

License

MIT © WANNA

FAQs

Package last updated on 05 Aug 2022

Did you know?

Socket

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.

Install

Related posts