From 8259ac8e2eb08563c3cbb3f7bd2a3b142630ece8 Mon Sep 17 00:00:00 2001
From: Alex <49969959+alexzhang1030@users.noreply.github.com>
Date: Mon, 11 Sep 2023 23:36:22 +0800
Subject: [PATCH] fix: the missing export and docs (#43)
* fix: the missing export and docs
---
README.md | 11 ++++++++---
src/core/index.ts | 7 ++++++-
2 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index e232e83..951b8f6 100644
--- a/README.md
+++ b/README.md
@@ -50,6 +50,12 @@ import { pcss, ... } from '@pmndrs/vanilla'
AccumulativeShadows
Caustics
+ Abstractions
+
Gizmos
- Grid
@@ -522,7 +528,6 @@ export type BillboardType = {
}
```
-
#### Text
[![storybook](https://img.shields.io/badge/-storybook-%23ff69b4)](https://pmndrs.github.io/drei-vanilla/?path=/story/abstractions-text--text-story)
@@ -600,8 +605,8 @@ const preloadRelatedParams = {
onPreloadEnd: () => {
// this is the callback when font and characters are loaded
},
-=======
-
+```
+
#### Sprite Animator
[![storybook](https://img.shields.io/badge/-storybook-%23ff69b4)](https://pmndrs.github.io/drei-vanilla/?path=/story/misc-spriteanimator--sprite-animator-story)
diff --git a/src/core/index.ts b/src/core/index.ts
index 2885e3e..cefce5c 100644
--- a/src/core/index.ts
+++ b/src/core/index.ts
@@ -8,7 +8,12 @@ export * from './AccumulativeShadows'
// Misc
export * from './useFBO'
+export * from './SpriteAnimator'
+
+// Abstractions
+export * from './Outlines'
+export * from './Billboard'
+export * from './Text'
// Gizmos
export * from './Grid'
-export * from './Outlines'