MeshifAI | Text-to-3D Generation Platform for Everyone
MeshifAI is a text-to-3D generation platform designed to enable developers and creators to generate 3D models from natural language descriptions. It offers powerful tooling for integrating AI-generated 3D models into JavaScript and Unity projects, with simple one-line text prompts and runtime model generation capabilities.
Key Features
- Text-to-3D model generation from natural language prompts (e.g., "A medieval castle").
- Runtime model generation suitable for integration into live applications and games.
- JavaScript SDK for easy integration in web/app projects.
- Unity SDK for runtime 3D model generation within Unity projects.
- Lightweight usage with simple callbacks to handle generated models.
- Supports usage in both web and game development environments.
How to Use MeshifAI
JavaScript (Web/Desktop)
// Import the MeshifAI library
import meshifai from '@0xretrodev/meshifai';
// Generate a 3D model from text in one line
const modelUrl = await meshifai.textTo3d("A medieval castle");
// The model URL can be used with any 3D viewer or downloaded
console.log("Your 3D model is ready:", modelUrl);
Unity (C#)
using MeshifAI.Core;
// Generate a 3D model from text with a simple callback
Meshifai.GenerateModel(
"A medieval castle",
model => {
// The model is ready to use
model.transform.SetParent(transform);
}
);
Note: The generated model URL or model asset can be consumed by 3D viewers or integrated directly into scenes depending on your pipeline.
Platforms & Integration
- JavaScript SDK: npm i @0xretrodev/meshifai
- Unity SDK: Unity package with runtime 3D model generation
- Works with standard 3D viewers and rendering pipelines
How It Works
- You provide a textual description of the desired 3D model.
- MeshifAI processes the prompt with AI models to generate a 3D model asset.
- The resulting model is exposed as a URL or asset suitable for immediate use in your application or game.
Safety and Usage Considerations
- Use within licensing terms of generated assets.
- Ensure prompts comply with platform policies and content guidelines.
Core Features
- Text-to-3D generation from natural language prompts
- Runtime model generation for JavaScript and Unity
- JavaScript SDK for web/app integration
- Unity SDK for runtime model generation in Unity
- Simple one-line prompt workflow
- Output accessible as a URL or asset for immediate use
- Cross-environment support (Web, Unity-based projects)