Jump to content
LaunchBox Community Forums

XAML Tips and Tricks


Recommended Posts

@Jason Carr Hi Jason am using skewtransform for the Wheel Data and Notes as well as the Video, glad you like not all platforms will have skew in them just one more platform see other screenshot as well as screenshot for another platform non skew and one in games or maybe 2 not sure yet.  For the platform with the large video iam trying to get just the scrolling platform notes to work n the centre between the recent and favourite games but am not having much luck yet maybe you can help there?

Untitled1.png

Untitled.png

  • Like 1
Link to comment
Share on other sites

 

here's some sample code:

 


<Viewport3D>

            <Viewport3D.Camera>

                <PerspectiveCamera Position="0, 0, 4"/>

            </Viewport3D.Camera>

            <Viewport2DVisual3D >

                <Viewport2DVisual3D.Transform>

                    <RotateTransform3D>

                        <RotateTransform3D.Rotation>

                            <AxisAngleRotation3D Angle="40" Axis="0, 1, 0" />

                        </RotateTransform3D.Rotation>

                    </RotateTransform3D>

                </Viewport2DVisual3D.Transform>

                <Viewport2DVisual3D.Geometry>

                    <MeshGeometry3D Positions="-1,1,0 -1,-1,0 1,-1,0 1,1,0"

TextureCoordinates="0,0 0,1 1,1 1,0" TriangleIndices="0 1 2 0 2 3"/>

                </Viewport2DVisual3D.Geometry>

                <Viewport2DVisual3D.Material>

                    <DiffuseMaterial Viewport2DVisual3D.IsVisualHostMaterial="True" />

                </Viewport2DVisual3D.Material>

                <Viewport2DVisual3D.Visual>

                    <MediaElement x:Name="MediaPlayer" UnloadedBehavior="Manual"/>

                </Viewport2DVisual3D.Visual>

            </Viewport2DVisual3D>

            <ModelVisual3D>

                <ModelVisual3D.Content>

                    <DirectionalLight Color="#FFF" Direction="0,0,-1"/>

                </ModelVisual3D.Content>

            </ModelVisual3D>

        </Viewport3D>

 

  • Like 1
Link to comment
Share on other sites

@spektor56 Am still not getting my head around this fully as cant seem to apply the logic to the platform videos.   What i am trying and maybe you will be able to sort out the code for me is something like at the 0:35 mark in the video the way it shows a 3d depth perspective, but use the platform videos in a theme see mockup screenshot (this shot is a mockup from my old theme and not the theme im currently working on).  Is that even possible to do with our platform videos?

Untitled1.png

Link to comment
Share on other sites

 


                <Viewport2DVisual3D.Transform>

                    <RotateTransform3D>

                        <RotateTransform3D.Rotation>

                            <AxisAngleRotation3D Angle="-20" Axis="0, 1, 0" />

                        </RotateTransform3D.Rotation>

                    </RotateTransform3D>

                </Viewport2DVisual3D.Transform>

                <Viewport2DVisual3D.Geometry>

                    <MeshGeometry3D Positions="-2,1,0 -2,-1,0 1.5,-1,0 1.5,1,0"

TextureCoordinates="0,0 0,1 1,1 1,0" TriangleIndices="0 1 2 0 2 3"/>

                </Viewport2DVisual3D.Geometry>

 

  • Like 1
Link to comment
Share on other sites

@spektor56 Yes this is what i am looking for however when i place the code under 


<transitions:TransitionPresenter Transition="{transitions:FadeTransition}" Content="{Binding ImageVideoView}"  IsContentVideo="true" Margin="0,0,0,0" Grid.Column="3" Grid.Row="2" />
<Viewport2DVisual3D.Transform>

                    <RotateTransform3D>

                        <RotateTransform3D.Rotation>

                            <AxisAngleRotation3D Angle="-20" Axis="0, 1, 0" />

                        </RotateTransform3D.Rotation>

                    </RotateTransform3D>

                </Viewport2DVisual3D.Transform>

                <Viewport2DVisual3D.Geometry>

                    <MeshGeometry3D Positions="-2,1,0 -2,-1,0 1.5,-1,0 1.5,1,0"

TextureCoordinates="0,0 0,1 1,1 1,0" TriangleIndices="0 1 2 0 2 3"/>

                </Viewport2DVisual3D.Geometry>

when i do i get  The attached property 'Transform'was not found in type 'Viewport2DVisual3D' for <Viewport2DVisual3D.Transform>
and The attached property 'Geometry'was not found in type 'Viewport2DVisual3D' for </Viewport2DVisual3D.Geometry> and even the same if i add it as a media element named ImageVideoView.  As you can see am totaly noob at xaml, but would like to thank you for all your help thus far Thank You.

Link to comment
Share on other sites

@Jason Carr New theme should be finished in about a week, I call it SciDoc, have all the platform views and 2 game views done 4 of the platform views have scrolling data and notes, is it okay to send to you when finished for you to check it over her are the last two platforms platform view 1 and text list with details. Could you also tell me where i change the font size for the platform names in the in the platform text list with details i cant seem to find where to change it.

PV1.png

TLWD.png

Link to comment
Share on other sites

Thanks for getting back to me, I appreciate it. Now heres my next question..So in most view (as long as you haven't turned on the "skip games details page") it takes you to a 3rd page. The one that has Play, Flip Box, etc. Is that a separate view? If I wanted to make a 3rd background or theme for that page would that be possible, or is it cycling out something in that space? Does that make sense? Thanks again!

Link to comment
Share on other sites

That is the transition screen with just a bit more you can do before you launch the game, it only view of the game and it is themeable the textgamesview.  Most people always turn it off as its just an extra button press before you get to play the game. 

Edited by Maddoc1007
Link to comment
Share on other sites

Hi,

I'm creating a new theme inspired by the Nevato theme for the AttractMode frontend (see video below).

So far, I've got to this stage, with the help of the very kind @viking who's helped me by providing the source file for the arcade cabinet he used for his awesome cinematic videos:

Mockup.jpg

My main problem at the moment is that I would like to show the game video both as a background and in the arcade screen. The video works well in the BackgroundView, but I'm trying to use a 


<transitions:TransitionPresenter TransitionSelector="{Binding ImageVideoTransitionSelector}" Content="{Binding ImageVideoView}" IsContentVideo="true" />

to show the same video in the arcade screen, but it always shows a screenshot of the game, and not the video. Am I doing something wrong or is there no way to show the same video twice at the moment? @Jason Carr, can you help ? :)

Also, I have a couple more questions:

  • Is it possible to make the wheel elements rotated as well as offset? The CurveAmount parameter affects the offset but not the angle of the elements, so I can't achieve an effect similar to the one in the AttractMode wheel
  • Is it possible to remove any sort of fading when switching between videos? Even selecting No Transition in the BigBox options, BackgroundTransitionSelector seems to always apply a fade to videos. I would like to recreate the snappiness that can be seen in the AttractMode video when scrolling the wheel

Thank you very much!

 

 

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...