duelfi_web/public/UnityBuild/bridge_template
2025-04-08 12:40:27 +05:30

8 lines
272 B
Plaintext

/*UNITY BRIDGE*/
function sendMessageToReact(message) {
if (window.parent) {
window.parent.postMessage(message, "*"); // Replace "*" with your React app's origin for security
} else {
console.error("Parent window not found.");
}
}