Files
2025-10-03 16:49:53 +08:00

29 lines
543 B
Plaintext

<sence>
<div class="test-element">Hello PE Engine!</div>
</sence>
<script>
window.onLoad(()=>{
console.log("Simple test scene loaded")
})
</script>
<style>
.test-element {
width: 200px;
height: 100px;
background-color: #4CAF50;
color: white;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
top: 100px;
left: 100px;
border: 2px solid #45a049;
border-radius: 4px;
font-family: Arial, sans-serif;
font-size: 18px;
font-weight: bold;
}
</style>