Git Product home page Git Product logo

loggopsx's Introduction

PSXFunkin

Friday Night Funkin' on the PSX LOL

Code samples

// Note shake : 
// Add this code in stage.c, case StageState_Play:

if (stage.song_step >= "your step") // Replace "your step" with the step when you want noteshake to start
    noteshake = 1;
else
    noteshake = 0;

// Sprite angle changing :

fixed_t fx, fy;
	
//Draw a rotated texture
fx = stage.camera.x;
fy = stage.camera.y;
	
u8 sprite_angle = 0; // Angle of the sprite, dont put this in a function and dont make it more than 255
RECT tex_src = {0, 0, 255, 255};
RECT_FIXED tex_dst = {
	FIXED_DEC(0,1) - fx, // X position of the sprite
	FIXED_DEC(0,1) - fy, // Y position of the sprite
	FIXED_DEC(256,1), // Width of the sprite
	FIXED_DEC(256,1)  // Height of the sprite
};

// Change sprite angle when L2 or R2 is pressed
if (pad_state.held & PAD_L2)	
   	sprite_angle --;
if (pad_state.held & PAD_R2)
   	sprite_angle ++;
	
Stage_DrawTexRotate(&this->tex_back1, &tex_src, &tex_dst, stage.camera.bzoom, sprite_angle);

To use the funkinmultitool do ./tools/funkinmultitool/funkinmultitool in the source code folder

Compilation

Refer to COMPILE.md here

Disclaimer

This project is not endorsed by the original Friday Night Funkin' devs, this is just an unofficial fan project because I was bored.

loggopsx's People

Contributors

tomscop avatar unstop4ble avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.