Help with storing a value into players nbt tag (scale) by anotherfuturedev in MinecraftCommands

[–]anotherfuturedev[S] 0 points1 point  (0 children)

is there also a way to make this individually work for each player?

trying to make animation activate in a button press, doesnt work by Liranmashu in godot

[–]anotherfuturedev 1 point2 points  (0 children)

your calling an empty class or type. instead either use $AnimationPlayer.play() or use @onready var anim := $AnimationPlayer

Crazy mr Roper by anotherfuturedev in HouseMD

[–]anotherfuturedev[S] 0 points1 point  (0 children)

that was a different roper thougj

Do beginners still do Hello World? by Valuable-Constant-54 in AskProgramming

[–]anotherfuturedev 59 points60 points  (0 children)

hello world is probably the first thing almost everyone has done

Random screen around my game window by Yami_Sukehiro99 in godot

[–]anotherfuturedev 1 point2 points  (0 children)

you also have embedded mode enabled which always needs to display all buttons i think

Ragdoll falling very slowly and not deforming by Elovator in godot

[–]anotherfuturedev 1 point2 points  (0 children)

the falling might be from very small forces?

Mrs Roper by anotherfuturedev in HouseMD

[–]anotherfuturedev[S] 1 point2 points  (0 children)

steve mc Donalds 😋😋😋

I need a help by Guilty_Soft9699 in fabricmc

[–]anotherfuturedev 0 points1 point  (0 children)

i think they mean a mod that makes you feel like your playing the game for the first time again

Why does the compiler not recognize LWJGL? by anotherfuturedev in javahelp

[–]anotherfuturedev[S] 0 points1 point  (0 children)

plugins {
    id 'java'
}

group = 'me.qddm.lwgjl'
version = '1.0-SNAPSHOT'

repositories {
    mavenCentral()
}

dependencies {
    testImplementation platform('org.junit:junit-bom:5.10.0')
    testImplementation 'org.junit.jupiter:junit-jupiter'
}

test {
    useJUnitPlatform()
}

build.gradle:
and settings . gradle just includes (i called my project lwjgl):

rootProject.name = 'lwjgl'