Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

I am currently developing a mod that involves changing the camera position(without moving the player entity or creating another dummy entity).

 

I located the class net.minecraft.client.renderer.EntityRenderer, but found that, what minecraft does for rendering sleeping etc. is to translate/ rotate, which will, in my case, result in blocks getting culled if the camera is behind player.

 

Is there a way to directly change the camera position?

 

Thanks for helping!

Minecraft#setRenderViewEntity does what you want, the entity doesn’t have to be registered. I know you said you didn’t want a dummy entity but this is the best solution. 

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

  • Author

This approach is easy enough, but by setting renderViewEntity, I am not able to see my self anymore

8 hours ago, Recursion said:

This approach is easy enough, but by setting renderViewEntity, I am not able to see my self anymore

You could probably just do the render call yourself in one of forges render events. Looking at why the player isn’t rendering (where the code is that disables it) would be a good start to deciding where to do the render call from.

6 hours ago, DWDev said:

I would check out the pixelmon mod (https://github.com/zyczu1/pixelmon/tree/master/src/main/java/com/pixelmonmod/pixelmon/client/camera). They use an entity for the camera as well.

Personally I don’t think that Pixelmon is a good source, I would look at the vanilla code to understand what is going on, then at the pixelmon code to see what they do and then I would write my own implementation.

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

  • Author
7 hours ago, Cadiboo said:

You could probably just do the render call yourself in one of forges render events. Looking at why the player isn’t rendering (where the code is that disables it) would be a good start to deciding where to do the render call from.

Personally I don’t think that Pixelmon is a good source, I would look at the vanilla code to understand what is going on, then at the pixelmon code to see what they do and then I would write my own implementation.

I will definitely try to render the player again. But can you explain why you would go for a dummy entity?

 

Right now i am still weighing the two approaches:

 

1. Making another dummy entity and setViewEntity to this one.

 

2. Inspect how vanilla does the rendering and make opengl calls somewhere sensible 

 

and sort of trying both of them. Regarding the 2nd one, i was able to translate camera(by gl calls) to a certain position in the world after the forge rotation in orientCamera(), but that messed up how the camera rotates(It doesnt rotate about the new position, which makes sense, i guess). But I'm not sure how to fix it.

45 minutes ago, Recursion said:

But can you explain why you would go for a dummy entity?

Compatibility, maintainability etc. A dummy entity is pretty much already supported by all mods and this approach is very unlikely to need major changes each minecraft update.

About Me

Spoiler

My Discord - Cadiboo#8887

My WebsiteCadiboo.github.io

My ModsCadiboo.github.io/projects

My TutorialsCadiboo.github.io/tutorials

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.