u/HourPen

Project Ladybug

Another workshop of mine about a click follower bug.
I tried this before "data binding keyframes" update but I couldn't. I'm terrible at scripting.
Look at it now :)
Aceleration, direction rotating and everything else are possible with some data bindings.

u/HourPen — 4 days ago

Mini T-Shirt Washing Game

Are you finding it difficult to do your chores at home?
Don't worry, things are now more fun with "Clean and Tidy."
:)
You can find it on the Rive Marketplace now.
I'm curious to hear your thoughts on its gameplay, please share them.

u/HourPen — 5 days ago

A little interactive animation

I came across an After Effects tutorial on YouTube.

Although it relies on scripting, I figured I could replicate it in Rive without coding.

So far, so good! :)

------

I wanted to publish this on the marketplace, but the eyes and mouth (drawn with stroke lines) aren't showing up on the page, so I'm holding off for now.

u/HourPen — 6 days ago
▲ 12 r/cs2

That's Enough

According to Steam, I have 1,300 hours in this game... but honestly, I’ve been playing it since high school, way before that.

It’s virtually impossible to find a cheat-free match anymore. In some map pools, the game just loops endlessly between the same two maps. The Office-Italy pool is so overrun with bots that you can't even hop in and play a decent match.

What's even the point?
Screw it, I'm even leaving this group, I'm so fed up.

Maybe I'll check back in a year or two to see if the environment has improved and if the classic maps I love have returned. Until then, I'm done. I've uninstalled the game.

reddit.com
u/HourPen — 8 days ago

Rive

In the early 2000s, I discovered Macromedia Flash. Being able to create interactive web animations hooked me to the computer even more than video games did. However, coding and scripting never really clicked for me, so I always relied on visual tools.

Later in life, I specialized in After Effects, which opened the door for me to enter the media industry. I spent around 20 years working this way—designing title sequences for TV shows, music videos for artists, and visual effects for feature films.

Yet, I never really felt the spark to develop a personal project of my own.

Since I found Rive, though, I constantly find myself glued to the screen, building things just for the joy of it—without any financial expectations. Just mini-games, interactive animations...

My girlfriend, my friends, and my family are always trying to pull me away from the computer :) I even try to wrap up my commercial media work early in the morning just to free up time for Rive.

We are truly lucky to be living in an era with tools like this.

u/HourPen — 11 days ago
▲ 3 r/cs2

About cheating issue

Valve doesn’t really give a damn about cheaters. Why would they? CS is still one of the most played games in the world, and as long as those player numbers stay through the roof, they won't care.

​What if everyone just stopped playing for a week? What if we started a strike over this?

​I bet they’d start sweating real fast if the player counts suddenly plummeted.

​Do you think something like this could actually be pulled off on a global scale?

reddit.com
u/HourPen — 21 days ago

I built an one level click-shooter game in Rive

I'm a fan of old-school arcade games, and I wanted to see how complex a project I could create, similar to arcade games, without any coding knowledge.

Thanks to this workshop, I feel so much more comfortable using the app now, and I'm super excited to build even more! :)

You can check it on Rive Marketplace

Please let me know your thoughts!

u/HourPen — 23 days ago

itch.io Button Problem

Is there a way to run my .riv file in itch.io?

I don't know anything about coding. I tried with a simple HTML code and a .riv file. I can run my file but I can't click the buttons.

half working code:

<!DOCTYPE html>

<html lang="tr">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Rive Web Game</title>

<style>

html, body {

margin: 0; padding: 0; width: 100%; height: 100%;

overflow: hidden; background-color: #111;

display: flex; justify-content: center; align-items: center;

}

canvas { width: 100%; height: 100%; display: block; }

</style>

<!-- Rive Resmi Güncel Web Motoru -->

<script src="https://cdn.jsdelivr.net/npm/@rive-app/canvas@2.38.3/rive.min.js"></script>

</head>

<body>

<canvas id="rive-canvas"></canvas>

<script>

// Hata ayıklamayı kolaylaştırmak için konsola log basalım

console.log("Rive motoru yükleniyor...");

const r = new rive.Rive({

src: "oyun.riv", // Dosya adınızın birebir aynısı olmalı (büyük/küçük harfe dikkat!)

canvas: document.getElementById("rive-canvas"),

autoplay: true,

stateMachines: "State Machine 1", // Rive Editöründeki durum makinesi adınız

onLoad: () => {

console.log("Rive dosyası başarıyla yüklendi!");

r.resizeDrawingSurfaceToCanvas();

},

onLoadError: (err) => {

console.error("Rive dosyası yüklenirken hata oluştu:", err);

}

});

window.addEventListener('resize', () => {

if (r) r.resizeDrawingSurfaceToCanvas();

});

</script>

</body>

</html>

How can I make the buttons work?

reddit.com
u/HourPen — 2 months ago