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:

  • Core gameplay: Real-time squad control with survival and exploration elements.
  • Current Focus: AI pathing, character management, and basic environment layout

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, you can do so via:

Buy Me a Coffee at ko-fi.com
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