8 lines
272 B
Plaintext
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.");
|
|
}
|
|
} |