v43 update

This commit is contained in:
n00b87
2025-07-08 21:17:11 -05:00
parent f6a99ebba1
commit 96ba62c9de
49 changed files with 2401 additions and 1828 deletions

View File

@@ -960,6 +960,8 @@ add_embedded_arg("z", ID_TYPE_BYREF_NUM);
embed_function("GyroName$", ID_TYPE_FN_STR);
add_embedded_arg("gyro_num", ID_TYPE_NUM);
embed_function("NumGyros", ID_TYPE_FN_NUM);
embed_function("TouchX", ID_TYPE_FN_NUM);
embed_function("TouchY", ID_TYPE_FN_NUM);
embed_function("CheckSockets", ID_TYPE_FN_NUM);
add_embedded_arg("timeout_ms", ID_TYPE_NUM);
embed_function("TCP_SocketReady", ID_TYPE_FN_NUM);
@@ -1083,6 +1085,14 @@ embed_function("Runtime$", ID_TYPE_FN_STR);
embed_function("NumCPUs", ID_TYPE_FN_NUM);
embed_function("SystemRam", ID_TYPE_FN_NUM);
embed_function("GetGPUInfo$", ID_TYPE_FN_STR);
embed_function("Steam_AddAchievement", ID_TYPE_SUB);
add_embedded_arg("ach_id$", ID_TYPE_STR);
add_embedded_arg("ach_name$", ID_TYPE_STR);
embed_function("Steam_ClearAchievements", ID_TYPE_SUB);
embed_function("Steam_FinalizeAchievements", ID_TYPE_SUB);
embed_function("Steam_TriggerAchievement", ID_TYPE_FN_NUM);
add_embedded_arg("ach_name$", ID_TYPE_STR);
embed_function("Steam_GetID$", ID_TYPE_FN_STR);
embed_function("DimMatrix", ID_TYPE_FN_NUM);
add_embedded_arg("m_rows", ID_TYPE_NUM);
add_embedded_arg("m_cols", ID_TYPE_NUM);
@@ -2022,6 +2032,24 @@ add_embedded_arg("dim_y", ID_TYPE_NUM);
add_embedded_arg("dim_z", ID_TYPE_NUM);
embed_function("DeleteAN8", ID_TYPE_SUB);
add_embedded_arg("an8_project", ID_TYPE_NUM);
embed_function("SetMeshBoundingBox", ID_TYPE_SUB);
add_embedded_arg("mesh", ID_TYPE_NUM);
add_embedded_arg("min_x", ID_TYPE_NUM);
add_embedded_arg("min_y", ID_TYPE_NUM);
add_embedded_arg("min_z", ID_TYPE_NUM);
add_embedded_arg("max_x", ID_TYPE_NUM);
add_embedded_arg("max_y", ID_TYPE_NUM);
add_embedded_arg("max_z", ID_TYPE_NUM);
embed_function("GetMeshBoundingBox", ID_TYPE_SUB);
add_embedded_arg("mesh", ID_TYPE_NUM);
add_embedded_arg("min_x", ID_TYPE_BYREF_NUM);
add_embedded_arg("min_y", ID_TYPE_BYREF_NUM);
add_embedded_arg("min_z", ID_TYPE_BYREF_NUM);
add_embedded_arg("max_x", ID_TYPE_BYREF_NUM);
add_embedded_arg("max_y", ID_TYPE_BYREF_NUM);
add_embedded_arg("max_z", ID_TYPE_BYREF_NUM);
embed_function("ReCalculateMeshBoundingBox", ID_TYPE_SUB);
add_embedded_arg("mesh", ID_TYPE_NUM);
embed_function("CreateAnimatedActor", ID_TYPE_FN_NUM);
add_embedded_arg("mesh", ID_TYPE_NUM);
embed_function("CreateOctreeActor", ID_TYPE_FN_NUM);