[ FIX ] : ASCIIText Naming & Registry

This commit is contained in:
Utkarsh-Singhal-26
2026-01-21 16:08:55 +05:30
parent c484742f02
commit 18d561ea6f
27 changed files with 101 additions and 35 deletions

View File

@@ -4,7 +4,7 @@
import { onMounted, onUnmounted, watch, useTemplateRef } from 'vue';
import * as THREE from 'three';
interface AsciiTextProps {
interface ASCIITextProps {
text?: string;
asciiFontSize?: number;
textFontSize?: number;
@@ -14,7 +14,7 @@ interface AsciiTextProps {
className?: string;
}
const props = withDefaults(defineProps<AsciiTextProps>(), {
const props = withDefaults(defineProps<ASCIITextProps>(), {
text: 'David!',
asciiFontSize: 8,
textFontSize: 200,