jkpete
2 months ago
9 changed files with 119 additions and 27 deletions
@ -0,0 +1,17 @@ |
|||||||
|
[remap] |
||||||
|
|
||||||
|
importer="csv_translation" |
||||||
|
type="Translation" |
||||||
|
uid="uid://dhb625wmjnlwy" |
||||||
|
|
||||||
|
[deps] |
||||||
|
|
||||||
|
files=["res://Example/SystemExamples/ItemList/ItemList.en.translation", "res://Example/SystemExamples/ItemList/ItemList.es.translation", "res://Example/SystemExamples/ItemList/ItemList.ja.translation"] |
||||||
|
|
||||||
|
source_file="res://Example/SystemExamples/ItemList/ItemList.CSV" |
||||||
|
dest_files=["res://Example/SystemExamples/ItemList/ItemList.en.translation", "res://Example/SystemExamples/ItemList/ItemList.es.translation", "res://Example/SystemExamples/ItemList/ItemList.ja.translation"] |
||||||
|
|
||||||
|
[params] |
||||||
|
|
||||||
|
compress=true |
||||||
|
delimiter=0 |
@ -0,0 +1,5 @@ |
|||||||
|
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.",「こんにちは」男は言いました |
@ -0,0 +1,30 @@ |
|||||||
|
using Godot; |
||||||
|
using System; |
||||||
|
|
||||||
|
namespace EGFramework.Examples.Test{ |
||||||
|
public partial class EGSaveTest : Node,IEGFramework |
||||||
|
{ |
||||||
|
public override void _Ready() |
||||||
|
{ |
||||||
|
base._Ready(); |
||||||
|
TestSqlite(); |
||||||
|
} |
||||||
|
|
||||||
|
public void TestSqlite(){ |
||||||
|
// string result = this.EGSqlite().CreateTable<SqliteBackpackItem>(); |
||||||
|
this.EGSqlite().SaveData(new SqliteBackpackItem{ |
||||||
|
ItemID = 10, |
||||||
|
ItemCount = 1, |
||||||
|
BackpackID = 1, |
||||||
|
}); |
||||||
|
GD.Print(this.EGSqlite().ExceptionMsg); |
||||||
|
// var properties = typeof(SqliteBackpackItem).GetFields(); |
||||||
|
// Godot.GD.Print(properties.Count() + " Readed "); |
||||||
|
} |
||||||
|
} |
||||||
|
public struct SqliteBackpackItem{ |
||||||
|
public int ItemID; |
||||||
|
public int ItemCount; |
||||||
|
public int BackpackID; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,15 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Linq; |
||||||
|
using System.Threading.Tasks; |
||||||
|
|
||||||
|
namespace EGFramework |
||||||
|
{ |
||||||
|
public class EGTable : EGModule |
||||||
|
{ |
||||||
|
public override void Init() |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue