How to Use Trellis 3 AI: A Complete Beginner's Guide to Fast AI 3D Model Generation
How to Use Trellis 3 AI: A Complete Beginner's Guide to Fast AI 3D Model Generation
Introduction
AI 3D model generation has transformed from a niche research area into an accessible tool for creators, game developers, and designers. The barrier to entry has shifted from "can you model?" to "can you describe?" But speed matters — waiting minutes for a single generation breaks creative flow and slows iteration.
Trellis3 (https://www.trellis3.com) addresses this directly with generation times of 30-90 seconds, positioning itself as the fastest AI 3D generator available at its price point. Unlike platforms that produce raw meshes requiring significant cleanup before use, Trellis3 outputs production-ready assets with clean topology and PBR materials, ready for immediate import into game engines and 3D applications.
This guide walks through the complete workflow from account creation to engine import, with practical tips for each step.
What You Need
Before starting, it helps to understand how Trellis3 compares with the other major AI 3D generation platforms.
| Factor | Trellis3 | Meshy AI | Rodin (Deemos) | Luma AI Genie |
|---|---|---|---|---|
| Generation Speed | 30-90 seconds | 2-5 minutes | 3-8 minutes | 1-3 minutes |
| Export Formats | OBJ, FBX, GLB, STL | OBJ, FBX, GLB, STL | OBJ, FBX, GLB | GLB, USD, OBJ |
| Style Presets | 16 | 4-6 | 8-10 | Minimal |
| Quality Tiers | Standard, Pro, Ultra | Standard, Pro | Standard, Pro | Single tier |
| PBR Materials | Full (albedo, normal, roughness, metallic) | Limited | Basic set | Basic |
| Game Engine Ready | Yes (optimized) | Needs cleanup | Needs optimization | Needs optimization |
| Starting Price | $9.90/mo | $14.99/mo | $19.00/mo | $15.00/mo (via Luma subscription) |
| Free Trial | Yes | Yes | Yes | Yes |
Trellis3 offers the fastest generation, lowest entry price, and most style presets among the four. Its exports are specifically optimized for game engine workflows, which makes it a strong choice for Unity, Unreal Engine, and Three.js developers.
Step 1: Visit Trellis3 and Sign Up
Navigate to https://www.trellis3.com and click the sign-up button. You can register with an email address or through supported social login options.
After sign-up, you will receive free credits that allow you to test the platform before committing to a subscription. The credits are applied to your account and remain available until used. No credit card is required during sign-up for the free tier evaluation.
Once logged in, you will see the main dashboard with generation controls, credit balance display, and access to your asset library.
Step 2: Choose Text-to-3D or Image-to-3D Input
Trellis3 supports two input methods:
Text-to-3D: Enter a text description of the model you want to generate. Be specific about the object, its shape, materials, and any relevant context. For example, instead of "a chair," try "a mid-century modern wooden chair with curved armrests and fabric upholstery."
Image-to-3D: Upload a reference image of the object you want to convert into a 3D model. The platform analyzes the image for shape, texture, and color information, then generates a corresponding 3D mesh. Best results come from images with clear silhouettes against simple backgrounds and consistent lighting.
You can switch between input modes at any time. Each mode has its own strengths — text is better for conceptual exploration, while image-to-3D excels at reproducing existing designs.
Step 3: Select Quality Tier and Style Preset
Quality Tier controls the output resolution and detail level:
- Standard: Fastest generation (30-45 seconds). Balanced quality suitable for prototyping, placeholders, and low-poly game use.
- Pro: Higher resolution textures and more geometric detail (45-70 seconds). Suitable for production assets in games and web applications.
- Ultra: Maximum quality with up to 4K textures and highest polygon counts (70-90 seconds). Best for hero assets, close-up renders, and high-fidelity use cases.
Style Preset determines the visual treatment of the model. The 16 available presets include Photorealistic, Digital Art, Oil Painting, Anime, Fantasy Art, Cyberpunk, Watercolor, Abstract, Modern, Creative, Minimalist, Vintage, Sci-Fi, Low Poly, Clay Render, and Pixel Art.
For a first generation, start with Standard quality and the Photorealistic preset. This combination produces fast results and gives you a baseline to compare against other settings.
Step 4: Generate — 30-90 Second Generation
Click the generate button to start the process. Trellis3 processes your input on its servers and streams progress updates as the model takes shape.
The generation pipeline works as follows:
- Interpretation: The AI analyzes your text prompt or reference image to understand the desired object, shape, and style.
- Geometry generation: A base mesh is created matching the interpreted shape. At this stage the model has volume and form but no surface detail.
- Detail refinement: Surface details, edges, and fine geometry are added based on the quality tier and style preset.
- Texturing: Materials and textures are applied using PBR workflows, including albedo, normal, roughness, and metallic maps.
- Optimization: The mesh undergoes auto-retopology to ensure clean geometry suitable for real-time rendering.
The entire process completes in 30-90 seconds depending on the quality tier selected.
Step 5: Preview with 360 Rotation
Once generation completes, the model appears in the built-in 360-degree viewer. You can:
- Drag to rotate the model around its vertical and horizontal axes
- Scroll to zoom in and out for detail inspection
- Enable auto-rotation to view the model from all angles automatically
- Inspect surface detail by zooming in on specific areas
Use this preview to evaluate whether the model matches your expectations. Check for geometric accuracy, texture quality, and overall fidelity to your original input. If adjustments are needed, return to the input settings, refine your prompt or image, and regenerate.
Step 6: Export to OBJ, FBX, GLB, or STL
When you are satisfied with the result, proceed to export.
Trellis3 offers four export formats, each suited to different workflows:
| Format | Best For | Key Characteristics |
|---|---|---|
| OBJ | Universal compatibility | Widest support across 3D applications. Exports geometry and UV coordinates. Material file (.mtl) included. |
| FBX | Game engines (Unity, Unreal) | Best pipeline support. Includes mesh, materials, textures, and scene hierarchy. |
| GLB | Web (Three.js, WebGL) | Single-file format. Self-contained with geometry, textures, and materials. Ideal for web deployment. |
| STL | 3D printing | Simplest format. Mesh geometry only. No textures or materials. Best for physical fabrication. |
For game development, FBX is recommended for Unity and Unreal Engine pipelines. For web-based projects using Three.js, GLB is the optimal choice due to its single-file convenience and native browser support.
Step 7: Import into Unity, Unreal, or Three.js
Unity Import
- Save your exported file (FBX recommended) to your Unity project's Assets folder.
- Unity automatically detects and imports the model.
- PBR materials are applied automatically if the FBX export includes them.
- Drag the model from the Project window into your Scene.
- Adjust material properties as needed in the Inspector.
Unreal Engine Import
- Save your exported file (FBX recommended).
- In Unreal Engine, go to Content Browser, click Import, and select your FBX file.
- Set import options: ensure "Import Materials" and "Import Textures" are checked.
- The model appears in your Content Browser with materials already assigned.
- Drag into the level for placement.
Three.js Import
- Use GLB format for Three.js projects.
- Load the file using the GLTFLoader:
const loader = new GLTFLoader(); loader.load('model.glb', callback); - The loaded model includes geometry and materials ready for rendering.
- Add the model to your scene with
scene.add(gltf.scene).
If you encounter material differences between the preview and the imported result, adjust the PBR material parameters — particularly roughness and metallic values — in your target engine's material editor.
Pro Tips
- Start with Standard quality during initial exploration to iterate quickly, then switch to Pro or Ultra for the final generation once you have refined your prompt.
- Use image-to-3D for existing designs and text-to-3D for new concepts. The two modes complement each other well in a production pipeline.
- Match style to use case: Photorealistic for product renders, Low Poly for mobile games, Clay Render for preview iterations to save credits.
- Export to multiple formats if you work across engines. The same model can be exported as FBX for Unity and GLB for web without regenerating.
- Check mesh scale when importing into engines. AI-generated models may use different unit scales depending on the prompt and style settings.
- Refine prompts iteratively — each generation takes under two minutes, so treat the process as an interactive conversation with the AI rather than a one-shot request.
FAQ
How do I get started with Trellis3 for free?
Sign up at https://www.trellis3.com to receive free credits. No credit card is required for the free trial.
What is the fastest way to generate a model?
Select Standard quality tier and use a concise text prompt. Standard tier generations typically complete in 30-45 seconds.
Can I use Trellis3 for commercial game development?
Yes, models generated under a paid subscription can be used in commercial projects including games, apps, and websites.
What export format should I use for Unity?
FBX is the recommended format for Unity. It preserves mesh, materials, textures, and scene hierarchy.
Does Trellis3 work on a Mac?
Yes. Trellis3 runs entirely in the browser and works on macOS, Windows, and Linux systems.
How do style presets affect generation time?
Style presets have minimal impact on generation time. Quality tier selection is the primary factor affecting speed.
Can I regenerate a model with different settings?
Yes. You can modify your prompt, style, or quality tier and regenerate without consuming additional credits for the initial generation (credit usage applies per generation attempt).
Do I need a powerful GPU to use Trellis3?
No. Trellis3 processes everything on its servers. Any modern browser on any device can access the platform.
What happens if my model doesn't look right?
Refine your text prompt with more specific language about shape, materials, and style. For image-to-3D, try uploading a clearer reference image with better lighting and a simpler background.
Troubleshooting Common Issues
Model Geometry Is Distorted
If the generated model has distorted geometry — stretched areas, missing sections, or asymmetrical shapes — the issue is typically in the prompt or reference image. For text-to-3D, simplify the prompt to focus on the core shape first, then add detail in subsequent generations. For image-to-3D, ensure the reference image shows the object from an angle that clearly defines all dimensions.
Textures Appear Blurry or Mismatched
Blurry textures usually indicate that the quality tier was too low for the intended use. Regenerate at Pro or Ultra quality for higher texture resolution. If textures are misaligned on the mesh, the UV mapping from the generation may need adjustment. In this case, import the model into a 3D application like Blender and manually adjust UV coordinates before re-exporting.
Model Exports at Wrong Scale
Scale inconsistency between Trellis3 and your target engine is common. Before importing into Unity or Unreal, check the import settings for scale parameters. Unity defaults to 1 unit = 1 meter; Unreal defaults to 1 unit = 1 centimeter. Apply the appropriate scale multiplier during import — typically 0.01 for Unreal imports from Trellis3.
Generation Fails or Times Out
If a generation fails or exceeds the expected time, first check your internet connection stability. Trellis3 requires consistent bandwidth to stream model data back to your browser. If the issue persists, try switching to a lower quality tier — Standard tier has the highest success rate for initial generation attempts.
Materials Look Different in Engine Than in Preview
The in-browser preview uses different rendering than game engines. PBR materials from Trellis3 may appear brighter, darker, or more reflective in-engine due to different default lighting environments. Adjust the environment lighting in your target engine before modifying the material parameters. If the material still does not match, fine-tune roughness, metallic, and base color values in the engine's material editor.
Moving Beyond Basics
Once you are comfortable with the core generation workflow, explore advanced use cases:
- Asset batching: Generate multiple variations of the same object by changing the prompt's descriptive terms while keeping the core object name constant.
- Style exploration: Take the same prompt through all 16 style presets to see how the AI interprets each aesthetic direction.
- Cross-format mastery: Export the same model in all four formats and compare how each engine's import pipeline handles the asset.
- Prompt library building: Maintain a personal library of effective prompts organized by object category (furniture, weapons, characters, architecture, props).
- Credit budgeting: Plan your monthly generation volume across Standard, Pro, and Ultra tiers to maximize output within your subscription limits.
The faster you iterate, the better your results become. Trellis3's sub-90-second generation makes it uniquely suited for an experimental, rapid-prototyping approach to 3D asset creation — an approach that would be impractical on platforms that take several minutes per generation.

Top comments (0)