# wwobjloader2

> [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/kaisalmen/WWOBJLoader/blob/dev/LICENSE) [![WWOBJLoader](https://github.com/kaisalmen/WWOBJLoader/actions/workflows/actions.yml/badge.svg)](https://github.com/kaisalm

Latest version **6.2.1** (published 2024-04-19) · 0 weekly downloads

## Install

```sh
npm install wwobjloader2
pnpm add wwobjloader2
yarn add wwobjloader2
bun add wwobjloader2
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 6.2.1 |
| Published | 2024-04-19 |
| First published | 2017-03-25 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 3 |
| Unpacked size | 485.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 124 |
| Author | kaisalmen |
| Maintainers | kaisalmen |

## Links

- npm: https://www.npmjs.com/package/wwobjloader2
- Repository: https://github.com/kaisalmen/WWOBJLoader
- Homepage: https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/objloader2/README.md
- Issues: https://github.com/kaisalmen/WWOBJLoader/issues
- npm.io page: https://npm.io/package/wwobjloader2

## Dependencies (3)

- [three](https://npm.io/package/three.md) ~0.163.0
- [wtd-core](https://npm.io/package/wtd-core.md) ~3.0.0
- [wtd-three-ext](https://npm.io/package/wtd-three-ext.md) ~3.0.0

## Recent versions

- 6.2.1 (latest) — 2024-04-19
- 6.2.0-next.5 (next) — 2023-12-04
- 5.0.0-beta.7 (beta) — 2022-10-11
- 4.0.0-rc.0 (rc) — 2021-06-15
- 6.2.0 — 2024-01-05
- 6.2.0-next.4 — 2023-11-04
- 6.2.0-next.3 — 2023-11-03
- 6.2.0-next.2 — 2023-11-02
- 6.2.0-next.1 — 2023-11-02
- 6.2.0-next.0 — 2023-10-22
- 6.1.0 — 2023-10-21
- 6.0.2-next.1 — 2023-10-08
- 6.0.2-next.0 — 2023-10-08
- 6.0.1 — 2023-10-03
- 6.0.1-next.2 — 2023-10-02
- … 39 more at https://npm.io/package/wwobjloader2/versions

## README

# OBJLoader2 & OBJLoader2Parallel for three.js

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/kaisalmen/WWOBJLoader/blob/dev/LICENSE)
[![WWOBJLoader](https://github.com/kaisalmen/WWOBJLoader/actions/workflows/actions.yml/badge.svg)](https://github.com/kaisalmen/WWOBJLoader/actions/workflows/actions.yml)
[![Github Pages](https://img.shields.io/badge/GitHub-Pages-blue?logo=github)](https://kaisalmen.github.io/WWOBJLoader)
[![NPM Version](https://img.shields.io/npm/v/wwobjloader2.svg)](https://www.npmjs.com/package/wwobjloader2)
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/kaisalmen/WWOBJLoader)

**OBJLoader2** is a loader for the **OBJ** file format. It is an alternative to [OBJLoader](https://github.com/mrdoob/three.js/blob/dev/examples/jsm/loaders/OBJLoader.js) included in [three.js](https://threejs.org). The loader and its parser can be used on Main via **OBJLoader2** or in parallel inside a web worker via **OBJLoader2Parallel**.

## Project History

New versions of **OBJLoader2** and **OBJLoader2Parallel** are from now on again released as npm modules independent of three.js. The first stable version that was released independent again is 4.0.0. Versions 3.x.y were never released as independent npm and only in combination with three.ts itself.

Between release of version 5.0.0 and 6.0.0 all code has been transformed to TypeScript.

### Changelog

Interested in recent changes? Check the [CHANGELOG](https://github.com/kaisalmen/WWOBJLoader/blob/main/CHANGELOG.md).

## Development

### Getting Started

There exist three possibilities:

* Checkout the repository and run `npm install`, `npm run build` and then `npm run dev` to spin up local Vite dev server
* Press the `Gitpod` button above and start coding and using the examples directly in the browser
* Checkout the repository and use `docker-compose up -d` to spin up local Vite dev server.

Whatever environment you choose to start [Vite](https://vitejs.dev/) is used to serve the code and the examples using it. With this setup you are able to change the code and examples without invoking an additional bundler. Vite ensures all imported npm modules are available if previously installed in local environment (see `npm install`).

If you run Vite locally you require a **nodejs LTS** and **npm**. The Gitpod and local docker environment ensure all prerequisites are fulfilled.

In any environment the server is reachable on port 8085.

### Examples

If you want to get started see take a look at the following examples. They get more advanced from top to bottom:

* OBJLoader2 basic: [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/obj2_basic.html)] [[ts](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/OBJLoader2BasicExample.ts)]
* OBJLoader2 basic (Offscreen Canvas): [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/obj2_basic_offscreen.html)] [[ts](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/OBJLoader2BasicExampleOffscreen.ts)]
* OBJLoader2Parallel basic: [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/obj2parallel_basic.html)] [[ts](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/OBJLoader2ParallelBasicExample.ts)]
* OBJLoader2 usage options: [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/obj2_options.html)] [[ts](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/OBJLoader2OptionsExample.ts)]
* OBJLoader2 / OBJLoader parser capability comparison: [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/obj2_obj_compare.html)] [[ts](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/OBJLoader2OBJLoaderCompareExample.ts)]
* OBJLoader2 in react with a .jpg texture: [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/obj2_react.html)] [[tsx](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/ReactExample.tsx)]
* OBJLoader2 in react with a .mtl material: [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/obj2_react-mtl.html)] [[tsx](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/ReactExampleMtl.tsx)]
* AssetPipelineLoader basic example: [[html](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/assetpipeline.html)] [[ts](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/AssetPipelineLoaderExample.ts)]

Try out all examples here: <https://kaisalmen.github.io/WWOBJLoader>

### Main Branch

Main development now takes place on branch [main](https://github.com/kaisalmen/WWOBJLoader/tree/main). Tags identify the releases. The stable branch has been retired.

## Feature Overview

### OBJLoader2Parser

The parser `OBJLoader2Parser` used by `OBJLoader2` and `OBJLoader2Parallel` has all OBJ parsing capabilities of `OBJLoader` from three.js, plus some extra feature. Please see the following list:

* The `parse` methods of `OBJLoader2Parser` accepts `ArrayBuffer` or `String` as input. Text processing is approx. 15-20 pecent slower.
* In case `OBJLoader2Parallel` the of Parser `OBJLoader2Parser` is executed inside a worker.
* `OBJLoader2Parser` features indexed rendering including vertex reduction.
* Indexed rendering is available if switched on via `setUseIndices` (see `useIndices` in example **[OBJLoader2 usage options](https://github.com/kaisalmen/WWOBJLoader/blob/main/packages/examples/src/examples/OBJLoader2OptionsExample.ts#L63)**).
* Face N-Gons are supported.
* Multi-Materials are created when needed.
* Flat smoothing defined by "s 0" or "s off" is supported and Multi-Material is created when one object/group defines both smoothing groups equal and not equal to zero.
* Support for points and lines is available since V2.3.0.
* New mesh detection relies on 'g' occurrence or 'f', 'l' or 'p' type change (since V2.3.0). This allows multiple mesh definitions within one group.
* Negative face indices are supported (issue #28)
* The parser is now a single class that can be directly stored as string and therefore embedded in module or standard Workers (since V4.0.0).

## WorkerTaskDirector Core Library

`WorkerTask` from [wtd-core](https://github.com/kaisalmen/wtd/tree/main/packages/wtd-core) is used to control everything regarding workers. This library was separated with the 4.0.0 release. It now evolves as independent library that is utilized by `OBJLoader2Parallel`.

## Docs

Run `npm run doc` to create the documentation in [directory]((./packages/objloader2/docs).

Happy coding!

Kai

---
_Source: https://npm.io/package/wwobjloader2 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
