Posted April 24, 20205 yr I finished implementing my Sap in a way that's functional, but the fluid is opaque, which I don't want. How do I not make it opaque? My registry line for sap block: BlockList.sap = new FlowingFluidBlock(() -> FluidList.sap, Block.Properties.create(Material.WATER).doesNotBlockMovement().noDrops()).setRegistryName(location("sap")) and the fluid: FluidList.sap = (Source) new FluidSap.Source().setRegistryName(location("sap")), FluidList.flowing_sap = (Flowing) new FluidSap.Flowing().setRegistryName(location("flowing_sap")) (On another note, how do I create a Git repo from an Eclipse project?)
April 24, 20205 yr Use a transparent texture? As for a git repository, initialize the git repo in the folder that holds the build.gradle file and then repeat the process when you create a repo as normal.
April 24, 20205 yr Author 1 minute ago, ChampionAsh5357 said: Use a transparent texture? As for a git repository, initialize the git repo in the folder that holds the build.gradle file and then repeat the process when you create a repo as normal. How do you initialize a Git repo in the build.gradle-holding file?
April 24, 20205 yr If you can find the folder where you extracted the forge contents into, you are going to open up a command window (Command Prompt, Powershell, Terminal, etc.) and then type 'git init'. From there, its the same setup as you would a normal git repo for whatever website you are uploading to.
April 24, 20205 yr Author 12 minutes ago, ChampionAsh5357 said: If you can find the folder where you extracted the forge contents into, you are going to open up a command window (Command Prompt, Powershell, Terminal, etc.) and then type 'git init'. From there, its the same setup as you would a normal git repo for whatever website you are uploading to. ...I don't know how to set up a git repo. Could you please tell me?
April 24, 20205 yr 7 hours ago, TheThorneCorporation said: ...I don't know how to set up a git repo. Could you please tell me? For Eclipse: Make a github accout. Create an empty repository on github for your mod. It will give you the address to use as the remote. In Eclipse, right-click on your project, select Team, choose Share Project. on the Share Project screen, check Use or create repository in parent folder of project Click Create Repository Click Finish Right click your project again, choose Team, then Commit. It will open the Git Staging window at the bottom. add all the files with the green ++ button, which moves them to the bottom window. Click Commit and Push. In this screen, fill in the URI with the address for your repo from github. You can either fill in the username/pw info and save it, or make it prompt you every time, up to you. After this, you should see your project on github. When you edit/change files, use the git staging window to Commit your changes, and Push when you want to send it to github (you don't have to push every time you change, just when you want to publish it). Do some reading up on git, it's really useful. Branches are great.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.