ResourceImporterCSVTranslation

繼承: ResourceImporter < RefCounted < Object

匯入 CSV

說明

Comma-separated values are a plain text table storage format. The format's simplicity makes it easy to edit in any text editor or spreadsheet software. This makes it a common choice for game localization.

Example CSV file:

keys,en,es,ja
GREET,"Hello, friend!","Hola, amigo!",こんにちは
ASK,How are you?,Cómo está?,元気ですか
BYE,Goodbye,Adiós,さようなら
QUOTE,"""Hello"" said the man.","""Hola"" dijo el hombre.",「こんにちは」男は言いました

教學

屬性

bool

compress

true

int

delimiter

0


屬性說明

bool compress = true 🔗

如果true,則建立OptimizedTranslation 而不是Translation。這會以較小的CPU 開銷為代價使生成的檔案更小。


int delimiter = 0 🔗

在CSV 檔案中使用的分隔符號。預設值與常見的CSV 約定相符。製表符分隔值有時稱為TSV 檔案。