Author name: Danny

Game development and 3D artist Studio.

Signal Remnant

Devlog #2 – Radar, AI, Audio & New Regional Map

Radar System/Minimap Track real-time activity and nearby threats across the battlefield with our new radar interface. Audio Upgrade We’ve added new sound effects and voice responses for unit selection and engagement. The battlefield feels much more alive now! AI Improvements Squad behavior has been refined—units now respond more smartly to threats and terrain. NPC/AI behaviour […]

Signal Remnant

Devlog #1 – First Gameplay Preview of Signal Remnant

The following is a summary of information regarding the initial development of this project. This is the first week of development, and several basic systems have been implemented, such as: This is the first video of the development : Support If you like the work or games I’m developing and would like to provide support,

document.addEventListener("DOMContentLoaded", function () { // OPEN MODAL (tombol di card) var buttons = document.querySelectorAll(".asset-card .open-modal"); buttons.forEach(function (btn) { btn.addEventListener("click", function () { var card = btn.closest(".asset-card"); var modal = card.nextElementSibling; if (modal && modal.classList.contains("asset-modal")) { modal.style.display = "flex"; } }); }); // CLOSE MODAL (tombol X) var closes = document.querySelectorAll(".asset-modal .modal-close"); closes.forEach(function (btn) { btn.addEventListener("click", function () { var modal = btn.closest(".asset-modal"); if (modal) { modal.style.display = "none"; } }); }); // CLOSE MODAL ketika klik area gelap var modals = document.querySelectorAll(".asset-modal"); modals.forEach(function (modal) { modal.addEventListener("click", function (e) { if (e.target === modal) { modal.style.display = "none"; } }); }); });
Scroll to Top