HJ脚本分享基地┣ py ┫技术分享 -查档-开盒_思路_免费开户__大杂烩
رفتن به کانال در Telegram
Open-source scripts shared for educational purposes. Not responsible for user misuse. Takedown requests (EU DSA Art. 16): atienzarhodorax838@gmail.com 业务联系: @APl520
نمایش بیشترکشور مشخص نشده استدسته بندی مشخص نشده است
2 715
مشترکین
+2424 ساعت
+1277 روز
+28630 روز
آرشیو پست ها
基于 Android使用 Surface绘制Dear ImGui 的纯 Native方案库
通过 Surface Control创建独立的 surface实现覆盖层绘制
github开源
密码 死妈小猫
死妈小猫也是个杂种,自己源码非他妈带我图,绝对的杂种,还仿别人源码
UI: t.me/SUQIUCISRC/37
人数显示 个人感觉狗屎
if (TotalEnemy) {
int enemyCount = totalEnemies;
int botCount = totalBots;
int enemyDigits = enemyCount > 0 ? (int)log10(enemyCount) + 1 : 1;
int botDigits = botCount > 0 ? (int)log10(botCount) + 1 : 1;
float dynamicWidth = 180.0f + (enemyDigits + botDigits) * 7.0f;
ImGui::SetNextWindowPos(ImVec2(ImGui::GetIO().DisplaySize.x * 0.5f, 45.0f),
ImGuiCond_Always, ImVec2(0.5f, 0.0f));
ImGui::SetNextWindowSize(ImVec2(dynamicWidth, 65.0f), ImGuiCond_Always);
ImGui::PushStyleVar(ImGuiStyleVar_WindowRounding, 25.0f);
ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(25, 12));
ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(18, 0));
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 15.0f);
ImGui::PushStyleColor(ImGuiCol_WindowBg, ImVec4(0.08f, 0.09f, 0.12f, 0.92f));
ImGui::PushStyleColor(ImGuiCol_Border, ImVec4(0.2f, 0.5f, 0.8f, 0.4f));
ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(1.0f, 1.0f, ...
